.swal2-toast.colored-toast {
    border-radius: 8px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 1rem !important;
    background: #fff !important;
    border-left: 5px solid;
}

.swal2-toast.colored-toast .swal2-title {
    color: #333 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.25rem !important;
}

.swal2-toast.colored-toast .swal2-html-container {
    color: #555 !important;
    font-size: 0.9rem !important;
}

/* ============================================================
   SUCCESS TOAST
   ============================================================ */
.swal2-toast.colored-toast.swal2-icon-success {
    border-left-color: var(--bs-success) !important;
    background-color: white !important;
}

.swal2-toast.colored-toast.swal2-icon-success .swal2-success-ring {
    border-color: var(--bs-success) !important;
}

.swal2-toast.colored-toast.swal2-icon-success .swal2-success-line-tip,
.swal2-toast.colored-toast.swal2-icon-success .swal2-success-line-long {
    background-color: var(--bs-success) !important;
}

/* ============================================================
   ERROR TOAST
   ============================================================ */
.swal2-toast.colored-toast.swal2-icon-error {
    border-left-color: var(--bs-danger) !important;
    background-color: white !important;
}

.swal2-toast.colored-toast.swal2-icon-error .swal2-error-ring {
    border-color: var(--bs-danger) !important;
}

.swal2-toast.colored-toast.swal2-icon-error .swal2-x-mark-line-left,
.swal2-toast.colored-toast.swal2-icon-error .swal2-x-mark-line-right {
    background-color: var(--bs-danger) !important;
}

/* ============================================================
   WARNING TOAST
   ============================================================ */
.swal2-toast.colored-toast.swal2-icon-warning {
    border-left-color: var(--bs-warning) !important;
    background-color: white !important;
}

.swal2-toast.colored-toast.swal2-icon-warning .swal2-warning-ring {
    border-color: var(--bs-warning) !important;
}

.swal2-toast.colored-toast.swal2-icon-warning .swal2-x-mark-line-left,
.swal2-toast.colored-toast.swal2-icon-warning .swal2-x-mark-line-right {
    background-color: var(--bs-warning) !important;
}

/* ============================================================
   INFO TOAST
   ============================================================ */
.swal2-toast.colored-toast.swal2-icon-info {
    border-left-color: var(--bs-info) !important;
    background-color: white !important;
}

.swal2-toast.colored-toast.swal2-icon-info .swal2-info-ring {
    border-color: var(--bs-info) !important;
}

.swal2-toast.colored-toast.swal2-icon-info .swal2-x-mark-line-left,
.swal2-toast.colored-toast.swal2-icon-info .swal2-x-mark-line-right {
    background-color: var(--bs-info) !important;
}

.swal2-toast.colored-toast .swal2-timer-progress-bar {
    background: rgba(0, 0, 0, 0.15) !important;
    height: 4px !important;
    border-radius: 2px !important;
}

@media (max-width: 576px) {
    .swal2-toast.colored-toast {
        width: 90% !important;
        padding: 0.8rem !important;
    }

    .swal2-toast.colored-toast .swal2-title {
        font-size: 0.95rem !important;
    }

    .swal2-toast.colored-toast .swal2-html-container {
        font-size: 0.85rem !important;
    }
}


.swal2-popup {
    border-radius: 1rem !important;
    padding: 2rem 2.5rem !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    font-family: 'Poppins', system-ui, sans-serif !important;
    animation: fadeInScale 0.25s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.swal2-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 0.5rem !important;
}

.swal2-html-container {
    font-size: 1rem !important;
    color: #666 !important;
    margin-bottom: 1rem !important;
}

.swal2-icon .swal2-icon-content {
    font-size: 2rem !important;
}

.swal2-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    margin-top: 1rem !important;
}

.swal2-styled {
    border-radius: 9999px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.4rem !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

.swal2-styled:focus {
    box-shadow: none !important;
}

@media (max-width: 480px) {
    .swal2-popup {
        padding: 1.5rem !important;
        max-width: 90% !important;
    }
    .swal2-title {
        font-size: 1rem !important;
    }
}


.swal2-textarea {
    width: 100% !important;
    border-radius: 1rem !important;
    border: 1px solid #e5e7eb !important;
    background: #fafafa !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    font-family: 'Poppins', system-ui, sans-serif !important;
    resize: none !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    min-height: 110px !important;
    margin: 10px auto;
}

.swal2-textarea:hover {
    background: #ffffff !important;
    border-color: #d1d5db !important;
}

.swal2-textarea:focus {
    border-color: #2563eb !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.swal2-textarea::placeholder {
    color: #9ca3af !important;
    font-size: 0.88rem !important;
}

.swal2-textarea:disabled {
    background: #f5f5f5 !important;
    border-color: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
}

.swal2-confirm swal2-styled {
    background-color: #00A8EA !important;
}
