/* Custom 199A Styles */

/* Body and Layout */
body {
    font-family: 'JetBrains Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-fluid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background-color: white;
    z-index: 1010;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
}

mark {
    background-color: #d7dde0ff;
    padding: 0.2em;
    border-radius: 3px;
}

/* Utilities */
.hover-underline:hover {
    text-decoration: underline !important;
}

/* Language Switcher */
.language-switch {
    background-color: #f8f9fa;
}

.lang-btn {
    border: none;
    background-color: transparent;
    color: #6c757d;
    padding: 0.375rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.lang-btn.active {
    background-color: #01AEEF;
    color: white;
}

/* Background Arcs */
.background-arcs {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.arcs-svg {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.arc {
    transform-origin: center;
    transition: none;
}

/* List Styles */
ul > li {
    margin: 0 10px 10px -30px;
}

/* Responsive */
@media (max-width: 768px) {
    .background-arcs {
        width: 100%;
        opacity: 1;
    }
}
