body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;

    --gap: 15px;
    --small-gap: 7px;
    --dark-blue: #1877f2;
    --blue: #35b3ee;
    --light-blue: #5ec6f6;
    --gray: #999;
    --weird-gray: oklch(.707 .022 261.325);
}

select {
    height: 40px;
    line-height: 35px;
    font-size: 15px;
    color: #444;
}

.container {
    margin: var(--gap) auto;
}

.grid-small {
    max-width: 720px;
    margin: 0 auto;
}

select:focus-visible {
    outline: none;
}

.is-hidden {
    display: none !important;
}

.icon-font {
    font: FontAwesome;
}

a {
    color: #0066cc;
    text-decoration: none;
    user-select: none;
}

spoiler {
    background-color: #222;
    color: #222;
    border-radius: 5px;
    padding: 2px 5px;
    cursor: pointer;
    user-select: none;
}

spoiler.revealed {
    color: inherit;
}

.button {
    background-color: #1877f2;
    color: white;
    border: none;
    padding: 10px;
    display: block;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    background-color: #165cdb;
}

.button--checkbox {
    width: 10px;
    height: 10px;
    opacity: 0;
    position: relative;
}

.button--checkbox::after {
    content: '✓';
    position: absolute;
    font-size: 14px;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: #7e7e7e 2px solid;
}
.header {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    padding: var(--small-gap) var(--gap);
}

.header .nav {
    display: flex;
    align-items: center;
    gap: var(--small-gap);
}
.account-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    position: relative;
    justify-self: end;
}

.account-toggle-button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.account-circle--open .account-dropdown {
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
}

.account-dropdown {
    bottom: -5px;
    right: 0;
    z-index: 10;
    pointer-events: none;
    border: 1px solid #ccc;
    background: #f0f2f5;
    transform: translateY(100%);
    opacity: 0;
    user-select: none;
    position: absolute;
    display: flex
;
    flex-direction: column;
    align-items: flex-end;
}

.account-dropdown a, .account-dropdown button {
    border: none;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    background: #f0f2f5;
    cursor: pointer;
    font-size: 14px;
    appearance: none;
    color: black;
}