#bootloader {
    background-color: #000;
    color: #ccc;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grub-box {
    border: 2px solid #ccc;
    padding: 20px;
    width: 600px;
    background: #000;
}

.grub-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.grub-menu {
    list-style: none;
}

.grub-item {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid transparent;
}

.grub-item.selected {
    background-color: #ccc;
    color: #000;
}

.grub-footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.boot-timer {
    margin-top: 10px;
    color: #888;
}
