* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #2E4756FF;
    padding: 20px 0;
}

.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 15px;
    background-color: #111;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    z-index: 101;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: rgb(46,71,86);
    background: linear-gradient(180deg, rgba(46,71,86,1) 0%, rgba(22,34,42,1) 100%);
    color: #fff;
}
.mainContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.imageContainer {
    display: flex;
    gap: 1rem;
    height: 35vh;
}

.imageLeft, .spotifyDiv {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: #222222 0px 0px 20px;

}

#artistImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.titleContainer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.rightContainer {
    flex: 1;
}

.infoContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: #111;
    padding: 2rem 2rem 0.5rem;
    border-radius: 12px;
    box-shadow: #222222 0px 0px 10px;
    height: calc(65vh - 3rem);

}

.detailsSection, .locationsSection {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.membersSection {
    max-height: 69%;
    overflow-y: auto;
    margin-bottom: 1rem;
    min-height: 50px;
}

ul {
    list-style: none;
    margin-bottom: 1rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 #000;
}

li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

p strong {
    color: #fff;
    margin-right: 0.5rem;
}

select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: rgba(29,185,84,1);
}

.map {
    flex-grow: 1;
    width: 100%;
    border-radius: 12px;
    background: #EEEEEE;
}

@media (max-width: 768px) {
    .infoContainer {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: auto;
    }

    .imageContainer {
        height: 40vh;
        flex-direction: column;
    }

    .titleContainer {
        font-size: 2rem;
        padding: 1.5rem;
    }

    .map {
        height: 300px;
    }

    .detailsSection, .locationsSection {
        height: auto;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.marker {
    background-image: url('marker.svg');
    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 200px;
    font: 12px/20px 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    color: #111111;
}

.mapboxgl-popup-content {
    text-align: center;
    padding: 10px;
}

.mapboxgl-popup-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.mapboxgl-popup-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #111111;
}
