/* Cards view */
.cardsView {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    height: fit-content;
    gap: 30px;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
}

.grid-item-artist {
    position: relative;
    flex: 0 0 ;
    height: fit-content;
    /* padding: 10px; */
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(349deg, rgb(105, 151, 137) 0%, rgb(86, 160, 129) 100%); */
    text-align: center;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-property: all;
    border-radius: 10px;
    padding: 20px;
    /* border: 1px 
    solid rgb(136, 255, 219); */
}



.artist-title {
    font-family: 'Times New Roman', Times, serif;
    text-shadow: 0px 0px 1px black;
    font-size: 30px;
    text-align: center;
    max-width: 80%;
    letter-spacing: -1px ;
    color:rgb(0, 255, 255);
    margin: auto auto;
}

.grid-item-artist img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    object-position: top;
    margin-top: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.486);
    border-radius: 1000px;
}

.grid-item-artist:hover {
    cursor: pointer;
    z-index: 99999;
    scale: 1.04;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-property: all;
    background-color: rgba(0, 255, 255, 0.08);
    /* box-shadow: 0px 0px 80px rgb(0, 255, 234); */
}

.grid-item-artist p {
    max-height: 2em;
    margin: 0 0 0 0;
    font-size: 15px;
    /* padding: 5px; */
}

.grid-item-artist a {
    position: relative;
    margin-top: 200px;
    color:rgb(0, 255, 255);
    text-decoration: none;
    text-align: center;
}

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

#frontpage-section {
    padding-bottom: 40px;
}

/* List view */

.listView {
    display: grid;
    grid-template-columns: 1fr;
    margin: 20px auto;
    height: fit-content;
    align-items: flex-start;
    align-content: flex-start;
    text-align: left;
    color: black;
    width: 80vw;
}

.listView :first-child {
    border: none;
}


.list-item-artist {
    
    margin: auto auto;
    color: aqua;
    /* background: linear-gradient(349deg, rgb(105, 151, 137) 0%, rgb(86, 160, 129) 100%); */
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr 3fr 4fr;
    width: 95%;
    height: fit-content;
    padding: 10px;
}

.list-item-artist:hover {
    cursor: pointer;
    transition-duration: 0.4s;
    transition-timing-function: linear;
    transition-property: all;
    z-index: 9999;
    background-color: rgba(0, 255, 255, 0.079);
    border-radius: 10px;
}

.list-item-artist p {
    margin-left: 10px;
    margin-right: 10px;
    padding: 0px 5px 0px 5px;
    border-left: 1px solid rgb(0, 225, 255);
}

.list-item-artist img {
    height: 80px;
    width: 80px;
    border-radius: 1000px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.486);
}

.list-item-artist a {
    color:aqua;
    text-align: right;
    align-self: right;
    padding-right: 20px;
}

.list-item-artist h3 {
    color: aqua;
    text-align: left;
    margin-left: 0;
}

#extended-artist-details {
    flex-wrap: wrap;
    width: 700px;
    max-height: 90vh;   
}

#artist-details-container img {
    display: block;
    max-width: 100%;
    max-height: 450px;
    margin: 20px auto 20px auto;
    box-shadow: 0px 0px 10px black;
}

#close-details-button {
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color:#424242;
    padding: 5px 8px;
    color: white;
    border: 1px solid gray; 
}

#extended-artist-details a {
    color: aqua;
}

#close-details-button:hover {
    background-color: rgb(87, 87, 87);
}

#change-grid-btn {
    width: 10%;
}