/* Toast Notifications Styles */

.toast-container {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid #2196F3;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast i.fas {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #666;
    transition: color 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #333;
}

/* Toast types */
.toast-success {
    border-left-color: #4CAF50;
}

.toast-success i.fas {
    color: #4CAF50;
}

.toast-error {
    border-left-color: #f44336;
}

.toast-error i.fas {
    color: #f44336;
}

.toast-warning {
    border-left-color: #ff9800;
}

.toast-warning i.fas {
    color: #ff9800;
}

.toast-info {
    border-left-color: #2196F3;
}

.toast-info i.fas {
    color: #2196F3;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        align-items: center;
    }

    .toast {
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
}
