/* GRUB menu styling: intentionally plain and low-level. */

#grub {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000;
    color: #d8d8d8;
    overflow: hidden;
}

#grub pre {
    width: fit-content;
    height: fit-content;
    max-width: calc(100vw - 12px);
    max-height: calc(100vh - 12px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    color: #d8d8d8;
    white-space: pre;
    overflow: auto;
    font-family: "Lucida Console", "DejaVu Sans Mono", monospace;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: 0;
    text-shadow: none;
    image-rendering: pixelated;
}

.grub-selected {
    background: #d8d8d8;
    color: #000;
    font-weight: 400;
}

#grub pre::-webkit-scrollbar {
    width: 0;
    height: 0;
}
