.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.custom-dropdown:hover .custom-dropdown-content {
    display: block;
}

.dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    text-decoration: none;
}

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

.version-badge {
    background-color: #007bff;
    color: white;
    padding: 0.25em 0.6em;
    border-radius: 0.25rem;
    font-size: 0.875em;
    cursor: pointer;
}

.version-badge-single {
    background-color: #007bff;
    color: white;
    padding: 0.25em 0.6em;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.version-badge-none {
    background-color: #6c757d;
    color: white;
    padding: 0.25em 0.6em;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.clickable-filename {
    color: inherit;
    text-decoration: none;
}

.clickable-filename:hover {
    color: inherit;
    text-decoration: none;
}