/* === MANAGE ALBUMS ===*/
.selectable-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    border: 1px solid rgba(18, 18, 18, 0.3);
    border-radius: 0.5rem;
    background-color: rgba(20, 20, 20, 1);
    backdrop-filter: blur(3px);
}

.selectable-item {
    background-color: rgba(18, 18, 18, 0.2);
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-align: left;
    color: #ddd;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

    .selectable-item:hover {
        background-color: rgba(217, 168, 50, 0.2);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        outline: none;
    }

    .selectable-item:focus,
    .selectable-item:active {
        background-color: rgba(217, 168, 50, 0.3);
        color: #fff;
        transform: scale(0.98);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
        outline: none;
    }

    .selectable-item.selected {
        background-color: rgba(217, 168, 50, 0.4);
        color: #fff;
        font-weight: 600;
    }

/* === ALBUM DETAIL PAGE === */
.album-detail-container {
    padding: 1rem;
    color: #e0e0e0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.album-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* === ALBUM DETAIL IMAGE (Inside Detail View) === */
.album-detail-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(217, 168, 50, 0.3);
    flex-shrink: 0;
}

/* === ALBUM INFO TEXT === */
.album-info {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

/* === ALBUM TITLE === */
.album-title {
    font-size: 2rem;
    color: rgba(217, 168, 50, 1);
    margin-bottom: 0.5rem;
    text-align: inherit;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* === ALBUM INFO PARAGRAPHS === */
.album-info p {
    font-size: 1rem;
    margin: 0.3rem 0;
    color: #cccccc;
    text-align: inherit;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* === TABLET === */
@media (max-width: 768px) {
    .album-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .album-info {
        max-width: 100%;
        align-items: center;
    }

    .album-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .album-info p {
        font-size: 0.95rem;
        text-align: center;
    }

    .album-detail-image {
        width: 160px;
        height: 160px;
    }
}

/* === MOBILE === */
@media (max-width: 480px) {
    .album-title {
        font-size: 1.4rem;
    }

    .album-info p {
        font-size: 0.9rem;
    }

    .album-detail-image {
        width: 140px;
        height: 140px;
    }
}

.album-track-art {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}