/**
 * Custom Toast Styles for SweetAlert2
 * Barber Shop Theme
 */

/* Custom toast styling */
.barber-toast {
    border: 2px solid #d4a373 !important;
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.3) !important;
}

.barber-toast-title {
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #d4a373 !important;
}

.barber-toast-text {
    font-size: 14px !important;
    color: #ffffff !important;
}

.barber-toast-progress {
    background: #d4a373 !important;
}

/* Success toast accent */
.swal2-success.swal2-icon-show {
    border-color: #28a745 !important;
}

.swal2-success .swal2-success-ring {
    border-color: rgba(40, 167, 69, 0.3) !important;
}

/* Error toast accent */
.swal2-error.swal2-icon-show {
    border-color: #dc3545 !important;
}

/* Warning toast accent */
.swal2-warning.swal2-icon-show {
    border-color: #ffc107 !important;
}

/* Info toast accent */
.swal2-info.swal2-icon-show {
    border-color: #17a2b8 !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .barber-toast {
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .barber-toast-title {
        font-size: 14px !important;
    }

    .barber-toast-text {
        font-size: 13px !important;
    }
}
