body {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #141414;
    color: #fafafa;
    font-family: universalSans, Inter, "Inter Fallback", Roboto, "Open Sans", Arial, sans-serif, system-ui, sans-serif;
}

header {
    height: 4rem;
    background-color: #141414;
    position: fixed;
    top: 0;
    z-index: 50;
    width: 100%;
}

.header-desktop {
    display: none;
    height: 100%;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-width: 100%;
    padding: 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}


.logo {
    margin-left: -22rem;
    justify-self: start;
}

.cursor-pointer {
    cursor: pointer;
}


.search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
    outline: none;
    border: 1px solid #303030;
    color: #fafafa;
    background-color: #1f1f1f;
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    height: 38px;
    margin: 0 auto;
}

.search-button:hover {
    background-color: #fcfcfc0f;
    border-color: rgba(#fafafa26, 0.15);
}

.search-button:focus-visible {
    z-index: 1;
    outline: none;
    box-shadow: 0 0 0 1px var(--ring);
}

.search-button:disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Icon slot adjustments */
.search-button [data-slot="icon"] {
    margin-inline: -0.125rem;
    margin-block: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--btn-icon);
}


/* Inner content layout */
.search-button .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.search-button .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.search-button .shortcut {
    display: none;
}

.text-muted-sm {
    font-size: 0.875rem;
    color: #acaaaa;
    display: none;
}


.shortcut {
    background-color: #f8fafc1a;
    color: #acaaaa;
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    padding: 0.125rem 0.25rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

[dir="rtl"] .shortcut {
    flex-direction: row-reverse;
}

.actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: end;
}

.mode {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mode:hover {
    background-color: #fcfcfc0f;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #0c0c0c;
    background-color: #f8fafc;
    border: 1px solid #f8fafc;
    border-radius: 999px;
    height: 36px;
    padding: 0 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 2rem 1rem 1.5rem 1rem;
    /* top right bottom left (pt-8 px-4 py-6) */
    margin: 0 auto;
    box-sizing: border-box;
}

.mobile-drawer {
    background-color: #141414;
    /* replace with actual color if needed */
    display: none;
    height: calc(100vh - 4rem);
    overflow-y: auto;
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
    padding-bottom: 8rem;
    /* pb-32 */
    padding-top: 2rem;
    /* pt-8 */
    -ms-overflow-style: none;
    /* hide scrollbar for IE/Edge */
    scrollbar-width: none;
    /* hide scrollbar for Firefox */
    overscroll-behavior: contain;
}

.mobile-drawer::-webkit-scrollbar {
    display: none;
}


.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    /* text-sm */
}

.menu-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    /* gap-2 */
    margin-bottom: 0.5rem;
    /* space-y-2 equivalent */
}

.bullet {
    background-color: #f8fafc;
    margin-top: 0.5rem;
    height: 0.25rem;
    width: 0.25rem;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bullet.active {
    opacity: 1;
    /* visible bullet */
}

.link {
    color: inherit;
    opacity: 0.5;
    /* default faded */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.link:hover {
    opacity: 1;
    /* hover:opacity-100 */
}

.link.active-link {
    opacity: 1;
    text-shadow: 0.2px 0 0 currentColor;
    /* [text-shadow:0.2px_0_0_currentColor] */
}

.element {
    position: relative;
    top: 4rem;
    padding-bottom: 8rem;
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.element2 {
    color: #858585;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    cursor: help;
}

.inline-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.bttn2 {
    background-color: transparent;
    border: none;
}

.heading {
    position: relative;
    margin-bottom: 0.5rem;
    scroll-margin-top: 6rem;
    /* scroll-mt-24 */
    font-family: serif;
    font-size: 2.125em;
    font-weight: 600;
    letter-spacing: -1px;
    color: white;
}

.heading:not(:first-child) {
    margin-top: 3.5rem;
    /* mt-14 */
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
    margin-left: 0.5rem;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fafafa;
    background: transparent;
    border: none;
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.copy-btn:hover {
    background-color: #f3f3f3;
    /* light gray */
}

@media (prefers-color-scheme: dark) {
    .copy-btn:hover {
        background-color: #1f1f1f;
        /* dark gray */
    }
}

.copy-btn:disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

.copy-btn .icon {
    height: 1rem;
    width: 1rem;
    flex-shrink: 0;
}


.leading-7 {
    line-height: 1.75rem;
}

.text-\[1em\] {
    font-size: 1em;
}

.break-words {
    overflow-wrap: break-word;
}

.block {
    display: block;
}

.mb-4 {
    margin-bottom: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

@media (min-width: 640px) {
    .search-button .shortcut {
        display: block;
    }

    .search-button {
        width: 20rem;
    }

    .search-button [data-slot="icon"] {
        margin-block: 0.25rem;
        width: 1rem;
        height: 1rem;
    }

    .text-muted-sm {
        display: block;
    }
}



@media (min-width: 768px) {
    .header-desktop {
        display: grid;
    }

    .mobile-header {
        display: none;
    }

    .element {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1350px) {
    .mainContent {
        display: grid;
        grid-template-columns: 1fr 3fr 1fr;
    }

    .mobile-drawer {
        position: sticky;
        top: 4rem;
        /* top-16 */
        display: block;
    }
}