/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    min-width: 300px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-body {
    padding: 16px;
}

.toast-success .toast-header {
    background: #d4edda;
    color: #155724;
    border-bottom-color: #c3e6cb;
}

.toast-success .toast-body {
    background: #d4edda;
    color: #155724;
}

.toast-error .toast-header {
    background: #f8d7da;
    color: #721c24;
    border-bottom-color: #f5c6cb;
}

.toast-error .toast-body {
    background: #f8d7da;
    color: #721c24;
}

.toast-warning .toast-header {
    background: #fff3cd;
    color: #856404;
    border-bottom-color: #ffeaa7;
}

.toast-warning .toast-body {
    background: #fff3cd;
    color: #856404;
}

.toast-info .toast-header {
    background: #d1ecf1;
    color: #0c5460;
    border-bottom-color: #bee5eb;
}

.toast-info .toast-body {
    background: #d1ecf1;
    color: #0c5460;
}

.toast-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Confirmation Styles */
.toast-confirm {
    min-width: 350px;
}

.toast-confirm-message {
    margin-bottom: 15px;
}

.toast-confirm-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.toast-confirm-buttons .btn {
    padding: 5px 15px;
    min-width: 60px;
}

/* Responsive */
@media (max-width: 576px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    
    .toast {
        min-width: auto;
        width: 100%;
    }
    
    .toast-confirm {
        min-width: auto;
    }
}

