/* Toast Container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Individual Toast */
.toast {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #28a745; /* Success Green */
    font-family: 'Inter', sans-serif;
    animation: slideIn 0.3s ease-out;
}

.toast.error {
    border-left-color: #dc3545; /* Error Red */
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}