﻿.artist-card-container {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.artist-card-content {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.artist-card-container img {
    width: 200px;
    height: 200px;
    border: 2px solid black;
    border-radius: 100px;
}

.three-button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 50px;
}

.three-buttons {
    cursor: pointer;
    border: 2px solid black;
    border-radius: 50px;
    font-size: large;
    padding: 12px 35px;
}

#about-button {
    background-color: #CCFF00;
    color: black;
}

#experience-button, #bookings-button {
    background-color: black;
    color: white;
}

.biography-container {
    width: 100%;
    margin: 0 auto;
    display: block;
    justify-content: left;
    margin-bottom: 50px;
}

.biography-container div {
    width: 50%;
    height: fit-content;
    overflow: hidden;
    padding: 10px;
}

.biography-container div p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-card-content {
    width: 165px;
    height: 165px;
    background-color: black;
    border-radius: 82.5px;
    border: 5px solid black;
    overflow: hidden;
}

.custom-card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top {
    display: flex;
    flex-direction: row;
    background-color: black;
    justify-content: space-between;
    height: 200px;
    width: 100%;
    padding: 20px;
}

.top-left img {
    width: auto;
    height: 50px;
}

.top-right {
    display: flex;
    flex-direction: row;
    justify-content: right;
    column-gap: 20px;
}

.top-right img {
    width: auto;
    height: 50px;
}

.circle-div {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-evenly;
    margin-top: 50px;
    column-gap: 20px;
    overflow-x: hidden;
}

.circle {
    background-color: black;
    height: 40px;
    width: 40px;
    min-width: 40px;
    border-radius: 20px;
}

#listen-here-button {
    cursor: pointer;
    border: 2px solid black;
    border-radius: 50px;
    font-size: large;
    padding: 5px 25px;
    background-color: #CCFF00;
    color: black;
}

.card-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#card-button {
    cursor: pointer;
    border: 2px solid black;
    border-radius: 50px;
    font-size: medium;
    padding: 3px 20px;
    background-color: #CCFF00;
    color: black;
    margin-top: 10px;
}

.send-request-container {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    margin-bottom: 100px;
}

.send-request-container button {
    color: white;
    background-color: black;
    font-size: large;
    border-radius: 50px;
    padding: 15px 100px;
}

.send-request-button {
    background-color: #CCFF00;
    color: black;
    padding: 10px 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
}

.inline-button {
    background-color: #CCFF00;
    color: black;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
    height: 50px;
    font-size: medium;
}

.song-card-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 160px;
    margin: 10px;
}

.text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dialog-image {
    width: 300px !important;
    height: 300px !important;
    border-radius: 10px;
}