/* Custom Toast Notification Styles */

.toast-container {
    z-index: 9999 !important;
}

.custom-toast {
    min-width: 300px;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-out;
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
    display: block !important;
}

.custom-toast .toast-header {
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: none;
}

.custom-toast .toast-body {
    padding: 12px 16px;
    font-size: 14px;
}

.toast-icon {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

/* Success Toast - Green */
.toast-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.toast-success .toast-header {
    background: transparent;
    color: white;
}

.toast-success .toast-body {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.toast-success .btn-close {
    filter: brightness(0) invert(1);
}

/* Error Toast - Red */
.toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.toast-error .toast-header {
    background: transparent;
    color: white;
}

.toast-error .toast-body {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.toast-error .btn-close {
    filter: brightness(0) invert(1);
}

/* Warning Toast - Yellow */
.toast-warning {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

.toast-warning .toast-header {
    background: transparent;
    color: #78350f;
}

.toast-warning .toast-body {
    background: rgba(255, 255, 255, 0.2);
    color: #78350f;
}

.toast-warning .btn-close {
    filter: brightness(0);
    opacity: 0.6;
}

/* Info Toast */
.toast-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.toast-info .toast-header {
    background: transparent;
    color: white;
}

.toast-info .toast-body {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.toast-info .btn-close {
    filter: brightness(0) invert(1);
}

/* Hover effect */
.custom-toast:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

