/* Simple Toaster Notification Styles */
.toaster-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toaster {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease-out;
    position: relative;
    border-left: 4px solid #333;
}

.toaster.success {
    border-left-color: #28a745;
    background: #d4edda;
}

.toaster.error {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.toaster.warning {
    border-left-color: #ffc107;
    background: #fff3cd;
}

.toaster.info {
    border-left-color: #17a2b8;
    background: #d1ecf1;
}

.toaster-icon {
    font-size: 24px;
    margin-right: 12px;
    font-weight: bold;
}

.toaster.success .toaster-icon {
    color: #28a745;
}

.toaster.error .toaster-icon {
    color: #dc3545;
}

.toaster.warning .toaster-icon {
    color: #ffc107;
}

.toaster.info .toaster-icon {
    color: #17a2b8;
}

.toaster-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.toaster.success .toaster-message {
    color: #155724;
}

.toaster.error .toaster-message {
    color: #721c24;
}

.toaster.warning .toaster-message {
    color: #856404;
}

.toaster.info .toaster-message {
    color: #0c5460;
}

.toaster-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.toaster-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toaster.slide-out {
    animation: slideOut 0.3s ease-in forwards;
}

@media (max-width: 768px) {
    .toaster-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
