body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.album-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.album-cover {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.album-cover:hover {
    transform: scale(1.20);
}

.album-cover img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.album-cover:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    font-size: 10px;
    opacity: 1;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.popup-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    background-color: #111;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    font-size: 55px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
    transform: scale(1.70);
}

.album-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.album-cover-container {
    margin-bottom: 20px;
    text-align: center;
}

.album-cover-container img {
    width: 200px;
    height: auto;
}
.album-backcover-container img {
    width: 200px;
    height: auto;
}

.popup-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: justify;
}

#album-cover-large {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

#album-backcover-large {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.album-details {
    text-align: center;
    font-size: 14px;
}

.tracklist {
    margin-top: 20px;
    width: 100%;
}

.tracklist div {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    cursor: pointer;
    padding: 5px;
    border-bottom: 1px solid #444;
}

.tracklist div:hover {
    background-color: #555;
}

#audio-player {
    width: 50%;
    height: 25px;
    margin-top: 10px;
}

#audio-player::-webkit-media-controls-panel {
    background-color: #e7e7e7;
    color: #2b2b2b;
}

#audio-player::-webkit-media-controls-play-button,
/* #audio-player::-webkit-media-controls-volume-slider, */
#audio-player::-webkit-media-controls-mute-button,
#audio-player::-webkit-media-controls-timeline,
#audio-player::-webkit-media-controls-current-time-display,
#audio-player::-webkit-media-controls-time-remaining-display,
#audio-player::-webkit-media-controls-seek-back-button,
#audio-player::-webkit-media-controls-seek-forward-button {
    color: #eee;
}

/* New styles for links */
a {
    color: #fff; /* Adjust this color to match the desired text color */
    text-decoration: none; /* Optional: remove underline */
}

a:hover {
    color: #ccc; /* Optional: color change on hover */
}

a:visited {
    color: #fff; /* Ensure visited links retain the same color */
}

/* Highlight current playing track */
.current-track {
    background-color: #333;
    color: #fff;
}
