/* Toast Notification Styles */
.toast-container {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    max-width: 350px;
    pointer-events: none;
}

.toast {
    background: #4ade80 !important;
    color: white !important;
    padding: 16px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 300px !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out !important;
}

.toast.error {
    background: #ef4444 !important;
}

.toast-icon {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.toast-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: white !important;
}

.toast-message {
    flex: 1 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: white !important;
}

.toast-close {
    background: none !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s !important;
}

.toast-close:hover {
    opacity: 1 !important;
}

.toast-close svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}
