/* ============================================
   Gayatri SweetAlert2 — branded flash popup
   ============================================ */

.gj-swal-popup {
    border-radius: 20px !important;
    padding: 28px 28px 22px !important;
    box-shadow: 0 24px 60px rgba(26, 35, 126, 0.18) !important;
    border: 1px solid rgba(245, 124, 0, 0.12) !important;
    font-family: 'Poppins', sans-serif !important;
    width: min(420px, 92vw) !important;
    overflow: hidden;
}

.gj-swal {
    text-align: center;
}

.gj-swal__icon {
    width: 72px;
    height: 72px;
    margin: 4px auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    animation: gj-swal-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.gj-swal__icon--success {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    box-shadow: 0 10px 24px rgba(67, 160, 71, 0.35);
}

.gj-swal__icon--error {
    background: linear-gradient(135deg, #EF5350 0%, #C62828 100%);
    box-shadow: 0 10px 24px rgba(198, 40, 40, 0.35);
}

.gj-swal__icon--info {
    background: linear-gradient(135deg, #F57C00 0%, #E65100 100%);
    box-shadow: 0 10px 24px rgba(245, 124, 0, 0.35);
}

.gj-swal__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A237E;
    margin: 0 0 8px;
    line-height: 1.3;
}

.gj-swal__text {
    font-size: 0.95rem;
    color: #616161;
    margin: 0 0 10px;
    line-height: 1.55;
}

.gj-swal__hint {
    font-size: 0.75rem;
    color: #9E9E9E;
    margin: 0 0 4px;
    font-weight: 500;
}

.gj-swal-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    margin-top: 8px !important;
    padding: 12px 28px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #F57C00 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(245, 124, 0, 0.28);
    transition: background 0.2s ease, transform 0.2s ease;
}

.gj-swal-btn:hover {
    background: #E65100 !important;
    transform: translateY(-1px);
}

.swal2-timer-progress-bar.gj-swal-timer,
.gj-swal-timer {
    background: #F57C00 !important;
    height: 4px !important;
}

.swal2-popup.gj-swal-popup .swal2-timer-progress-bar-container {
    margin: 0 !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    background: rgba(245, 124, 0, 0.12);
}

@keyframes gj-swal-pop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

html[data-admin-theme="dark"] .gj-swal-popup {
    background: #1E1E2E !important;
    border-color: rgba(245, 124, 0, 0.22) !important;
}

html[data-admin-theme="dark"] .gj-swal__title {
    color: #FFF3E0;
}

html[data-admin-theme="dark"] .gj-swal__text {
    color: #BDBDBD;
}
