/* Panel Container */
.cd_panel {
    padding: 15px;
    background: #313335;
    border: 1px solid #222;
    border-radius: 6px;
}

/* Panel Header */
.cd_panel_header {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #2a2c2d;
    border-radius: 4px;
    border: 1px solid #00b140;
    color: #00b140;
}

/* CD Card */
.cd_card {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    background: #3a3c3e;
    border-radius: 5px;
    border: 1px solid #444;
}

/* Cover */
.cd_cover {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #00b140;
    border-radius: 3px;
}

/* Info */
.cd_info {
    flex: 1;
    color: #e0e0e0;
}

.cd_artist {
    font-weight: bold;
    color: #00b140;
}

.cd_title {
    color: #ffffff;
    display: inline-block;
}

.cd_release {
    font-size: 0.8em;
    color: #bbbbbb;
    margin-bottom: 4px;
}

/* NEU Badge */
.cd_new_badge {
    display: inline-block;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 0.7em;
    font-weight: bold;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 3px;
    vertical-align: middle;
}

/* Links */
.cd_desc_link,
.cd_tracks_link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.85em;
    font-weight: bold;
    color: #00b140;
    text-decoration: none;
    cursor: pointer;
}

.cd_desc_link:hover,
.cd_tracks_link:hover {
    color: #6cff9c;
    text-decoration: underline;
}

/* Genres */
.cd_genres {
    font-size: 0.85em;
    margin-top: 6px;
    color: #cccccc;
}

/* Trackliste */
.cd_tracklist {
    margin: 5px 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9em;
}

.cd_tracklist li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.cd_tracknumber {
    width: 24px;
    text-align: right;
    color: #aaaaaa;
    flex-shrink: 0;
}

.cd_tracktitle {
    flex: 1;
}

.cd_tracklength {
    color: #aaaaaa;
    white-space: nowrap;
}

/* Modal */
.cd_modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}

.cd_modal_content {
    background: #2f3133;
    max-width: 600px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    border: 1px solid #00b140;
    color: #e0e0e0;
}

.cd_modal_content h3 {
    margin-top: 0;
    color: #00b140;
}

#cdModalText {
    max-height: 300px;
    overflow-y: auto;
}

/* Modal Close Button */
.cd_modal_close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 24px;
    cursor: pointer;
    color: #bbbbbb;
}

.cd_modal_close:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
    .cd_card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cd_tracklist li {
        flex-direction: row;
        justify-content: center;
    }

    .cd_tracklength {
        margin-left: 6px;
    }
}






















