/* Base styles - shared across all pages */

body {
    font-family: "Times New Roman", serif;
    margin-left: 60px;
    margin-top: 38px;
    background-color: rgb(24, 14, 11);
    display: flex;
    flex-direction: column;
}

#dither-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: auto;
}

.body_for_head {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 21px;
    width: 34px;
    background-color: rgb(37, 39, 40);
    z-index: 1000;
}

.line-numbers {
    position: absolute;
    top: 21px;
    left: 0;
    width: 24px;
    background-color: rgb(37, 39, 40);
    color: rgb(100, 111, 114);
    font-size: 12px;
    line-height: 1.6;
    text-align: right;
    padding-right: 10px;
    user-select: none;
    z-index: 998;
}

.line-numbers-bg {
    position: absolute;
    top: 21px;
    left: 0;
    width: 34px;
    height: 100%;
    background-color: rgb(37, 39, 40);
    z-index: 997;
}

a {
    color: rgb(180, 170, 160);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 1;
    text-decoration: underline;
    color: rgb(215, 114, 97);
}

.navbar {
    position: fixed;
    top: 0;
    left: 34px;
    width: 100%;
    background-color: rgb(37, 39, 40);
    display: flex;
    justify-content: left;
    gap: 0px;
    z-index: 1000;
}

.nav-btn {
    background-color: rgb(37, 39, 40);
    color: rgb(100, 111, 114);
    border: none;
    padding: 4px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.1s, transform 0.1s;
}

.nav-btn:hover {
    background-color: rgb(46, 52, 54);
}
