/* == VARIABLES == */
:root {
    --accent-pistacchio: #779977;
    --accent-orange: #FF9100;
    --foreground-grey: #101414;
    --foreground-black: #0f1111;
    --border: #3d4142;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #111516;
    color: white;
    font-family: Arial, sans-serif;
}

.left-margin {
    padding-left: 10px;
}

.navbar {
    width: 100%;
    min-height: 48px;

    background: linear-gradient(to bottom,
            #252a2c,
            #111415);

    border-bottom: 1px solid #080909;
}

.computer {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
}

.nav-button {
    height: 32px;
    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    color: #ddd;
    text-decoration: none;
    font-size: 13px;

    background: transparent;
    border: 1px solid var(--border);
    border-radius: 3px;

    transition: all 0.25s ease;
}

.nav-button:hover {
    background: var(--accent-orange);
    color: white;
}

.nav-button.active {
    border-color: var(--accent-orange);
    background: var(--accent-orange);
    color: white;
}

.brand img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.navbarimgspec {
    transform: translateY(-2px);
}


.mobile-dropdown {
    display: none;
}

.pgp-message {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.info-box {
    background-color: var(--foreground-black);
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: all 0.25s ease;
}

.anncs-ibox {
    background-color: var(--foreground-black);
    padding: 10px;
    padding-top: 0px;
    border: 1px solid var(--border);
    border-radius: 3px;
    transition: all 0.25s ease;
}

.info-box:hover {
    background-color: var(--foreground-grey);
}

.main-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    gap: 10px;
}

.anncs-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px;
    gap: 10px;
}

@media (max-width: 600px) {

    .computer {
        display: none;
    }

    .mobile-dropdown {
        display: block;
        position: relative;
    }




    .mobile-dropdown summary {
        height: 48px;
        padding: 0 16px;

        display: flex;
        align-items: center;
        gap: 10px;

        cursor: pointer;
        user-select: none;

        color: white;
        background: var(--accent-orange);

        list-style: none;
    }

    .mobile-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    /* Arrow */

    .arrow {
        margin-left: auto;

        width: 0;
        height: 0;

        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 8px solid white;
    }

    .mobile-dropdown[open] .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;

        top: 48px;
        left: 8px;
        right: 8px;

        z-index: 100;

        background: #171b1c;
        border: 2px solid var(--accent-orange);

        overflow: hidden;
    }

    .dropdown-menu a {
        display: block;

        padding: 20px 24px;

        color: #ddd;
        text-decoration: none;
        font-size: 18px;

        border-bottom: 1px solid #303536;

        transition: background 0.2s ease,
            color 0.2s ease;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        background: var(--accent-orange);
        color: white;
    }
}