/* Round Settings Specific Styles */

/* 
   Most styles are now inherited from global.css and components.css 
   Only page-specific overrides remain here.
*/


/* Fallback for bg-secondary if not in design-tokens (based on colored backgrounds usually being faint) */
.monospace {
    font-family: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
    color: var(--primary-color);
    font-size: 14px;
    background: rgba(102, 126, 234, 0.1);
    /* Fallback */
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

body.dark-mode .monospace {
    background: rgba(102, 126, 234, 0.2);
    color: #86efac;
}

.hidden {
    display: none !important;
}