/**
 * @fileoverview SweetAlert Custom Component Styles
 * 
 * This file contains custom styles for SweetAlert modals and dialogs
 * to match the application's design system and branding.
 * 
 * Key Features:
 * - Custom SweetAlert modal styling
 * - Branded button styles
 * - Custom typography
 * - Theme color integration
 */

/* SweetAlert Title Styles */
.swal-title {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 16px;
    text-transform: inherit;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: var(--terthemecolor);
}

/* SweetAlert Text Styles */
.swal-text {
    text-align: justify;
    color: var(--terthemecolor);
    font: 400 14px/26px 'Poppins', sans-serif;
}

/* SweetAlert Button Styles */
.swal-button {
    min-width: 160px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    border: none;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--terthemecolor);
    font: 400 14px/46px 'Poppins', Arial, Helvetica, sans-serif;
}

.swal-button:focus,
.swal-button.swal-button--confirm:focus {
    outline: 0 !important;
    overflow: hidden !important;
    box-shadow: none;
}

.swal-button.swal-button--confirm {
    background-color: var(--themecolor);
    color: #fff;
}

.swal-button.swal-button--confirm.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
