/* Original test.css content */
/* Custom Watermark Styles */
a[href*='chainlit'],
a[href*='Chainlit'],
#custom-watermark {
    /* Re-enable pointer events for our new link */
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none;
    color: inherit;
    visibility: visible !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Hide the original Chainlit logo */
a[href*='chainlit'] img,
a[href*='chainlit'] svg {
    display: none !important;
}

.watermark {
    display: block !important;
    visibility: visible !important;
    opacity: 0.7;
    font-size: 12px;
}

/* Mode Pills Styling */
#mode-pills-container {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.mode-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 9999px;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.mode-pill:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.mode-pill.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    font-weight: 600;
}

.mode-pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}