@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

.top-albums {
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
}

.top-albums label {
    margin-right: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.top-albums select {
    margin-bottom: 20px;
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
}

.top-albums select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
    outline: none;
}

.top-albums select:hover {
    border-color: #005f8a;
}

select#album-year-selector {
    margin-right: 10px;
}

.top-albums h2 {
    margin-top: 30px;
    font-size: 24px;
    color: #0073aa;
}

.top-albums ul {
    list-style-type: none;
    padding: 0;
}

.top-albums li {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.top-albums li:hover {
    background-color: #f1f1f1;
}

.top-albums li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.top-albums li img {
    margin-right: 10px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.top-albums li div {
    display: flex !important;
    flex-direction: column !important;
}

.top-albums li div > div {
    margin: 2px 0;
    font-size: 18px;
    color: #333;
}

.top-albums li strong {
    font-weight: bold;
}

.top-albums li .artist-name,
.top-albums li .album-name,
.top-albums li .album-release-date,
.top-albums li .album-label,
.top-albums li .album-rating {
    font-size: 15px !important;
    color: #333;
}
.album-label {
    font-weight: 100 !important;
}