#file-list {
    overflow-y: auto;
    max-height: 100%;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

#file-list li a {
    display: block;
    padding: 12px 16px;
    border: 2px solid var(--color3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color4);
    text-decoration: none;
    transition: all 125ms ease;
}

#file-list li a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    box-shadow: 0 4px 10px var(--shadow);
}