/**
 * Website Notification Styles
 */

/* Toast Container */
.website-toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

/* Toast */
.website-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #3b82f6;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
}

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

.website-toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.website-toast-content {
    flex: 1;
}

.website-toast-message {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.website-toast-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #9ca3af;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-toast-close:hover {
    color: #4b5563;
}

/* Toast Types */
.website-toast-success {
    border-left-color: #10b981;
    background: linear-gradient(to right, #ecfdf5, white);
}

.website-toast-success .website-toast-icon {
    color: #10b981;
}

.website-toast-error {
    border-left-color: #ef4444;
    background: linear-gradient(to right, #fef2f2, white);
}

.website-toast-error .website-toast-icon {
    color: #ef4444;
}

.website-toast-warning {
    border-left-color: #f59e0b;
    background: linear-gradient(to right, #fffbeb, white);
}

.website-toast-warning .website-toast-icon {
    color: #f59e0b;
}

.website-toast-info {
    border-left-color: #3b82f6;
    background: linear-gradient(to right, #eff6ff, white);
}

.website-toast-info .website-toast-icon {
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .website-toast-container {
        top: 70px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

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

/* Animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
