body {
    background-image: url("assets/background.png");
    background-size: cover;
}

.menu {
    position: fixed;
    top: 100px;
    left: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu a {
    display: block;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-family: "JetBrains Mono", monospace;
    font-size: 20pt;
    padding: 12px 16px;
    border: 1px solid #000;
}

.menu a:hover,
.menu a:focus-visible {
    background: #000000;
    color: #ff3131;
}

.content-wrapper {
    position: relative;
    margin: 150px auto 0px 1000px;
    max-width: 600px;
}

.gradient-box {
    background: linear-gradient(to right, #f4eb28, #ffffff); 
    width: 600px;
    height: 700px;
    border: 2px solid;
    overflow-y: auto;
    font-family: "JetBrains Mono", monospace;
    font-size: 12pt;
    font-weight: 400;
    letter-spacing: 1.4px;
}

.note-box {
    position: absolute;
    width: 260px;
    background: #ffffdf;
    top: 500px;     
    left: -80px;
    border: 2px solid #000000;
    font-family: "Tahoma", sans-serif;
    font-size: 12pt;

    cursor: grab;
    user-select: none;
}

.note-box:active {
    cursor: grabbing;
}

.status-window {
    position: absolute;
    top: 220px;
    left: 460px;
    width: 300px;
    height: 200px;
    padding: 3px;
    font-family: sans-serif;
    border: 2px solid #000000;
    background-color: #909294;
    flex-direction: column;
    font-family: "Tahoma", sans-serif;
    font-size: 10pt;

    cursor: grab;
    user-select: none;
}

.status-window:active {
    cursor: grabbing;
}

.status-header {
    background-color: #1700d1;
    border-bottom: 3px solid #b8cce4;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 4px;
}

.status-buttons button {
    border: none;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    background-color: #909294;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    cursor: pointer;
}

.status-content {
    height: 160px;
    overflow-y: auto;
    padding: 10px;
}

.status-content::-webkit-scrollbar {
    width: 16px;
}

.status-content::-webkit-scrollbar-track {
    background: #dfdfdf;
}

.status-content::-webkit-scrollbar-thumb {
    background: #909294;
}

.status-content::-webkit-scrollbar-button:single-button {
    background-color: #909294;
    height: 16px;
    display: block;
}

.bevel-out,
.status-content::-webkit-scrollbar-thumb,
.status-content::-webkit-scrollbar-button:single-button {
    box-shadow:
        inset -1px -1px #000000,
        inset 1px 1px #ffffff,
        inset -2px -2px grey,
        inset 2px 2px #e6e6e6;
}