/* Toast notification styles */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
}

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

.toast-icon {
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.4;
}

/* Primary color for success */
.toast-success {
    border-left-color: #ec4899;
}

.toast-success .toast-icon {
    color: #ec4899;
}

/* Accent color for errors */
.toast-error {
    border-left-color: #f472b6;
}

.toast-error .toast-icon {
    color: #f472b6;
}

/* Primary color for info */
.toast-info {
    border-left-color: #ec4899;
}

.toast-info .toast-icon {
    color: #ec4899;
}

/* Accent for warnings */
.toast-warning {
    border-left-color: #fbbf24;
}

.toast-warning .toast-icon {
    color: #fbbf24;
}

/* Mobile responsive */
@media (max-width: 640px) {
    #toast-container {
        right: 10px;
        left: 10px;
        top: 70px;
    }

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