/* Toast Notification System Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.toast {
    background-color: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    max-width: 350px;
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    display: flex;
    align-items: flex-start;
}
.toast.error {
    background-color: #e74c3c;
    border-left: 5px solid #c0392b;
}
.toast.success {
    background-color: #2ecc71;
    border-left: 5px solid #27ae60;
}
.toast.warning {
    background-color: #f39c12;
    border-left: 5px solid #e67e22;
}
.toast.info {
    background-color: #3498db;
    border-left: 5px solid #2980b9;
}
.toast.show {
    opacity: 1;
    transform: translateX(0);
}
.toast-message {
    flex-grow: 1;
    margin-right: 15px;
    line-height: 1.4;
}
.toast-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    margin-top: -2px;
    padding: 0;
    border: none;
    background: none;
}
.toast-close:hover {
    color: #ddd;
} 