*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    height: 100vh;
    width: 100vw;
    display: flex; 
}
.menu-list{
    height: 100%;
    width: 20%;
    background-color: navy;
    color: white;
    position: relative;
}
.name-header{
    height: 7%;
    width: 100%;
    color: navy;
    font-size: 150%;
    text-align: center;
    border: none;
    background-color: white;
    border-bottom-right-radius: 100px;
}
.favorites{
    height: 60%;
    width: 100%;
    margin-top: 30%;
    font-size: 150%;
    text-align: center;
    color: white;
}
#favorites-list{
    color: aquamarine;
}
.playlists{
    height: 15%;
    width: 100%;
    color: #0056b3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    background-color: white;
    position: absolute;
}
.songs-card{
    height: 100%;
    width: 80%;
    background-color: navy;
}
.song-header{
    height: 10%;
    width: 100%;
    padding-left: 4%;
    font-size: 120%;
    display: flex;
    align-items: end;
    color: white;
    background-color: navy;
}
.music-container{
    height: 90vh;
    max-height: 90vh;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: white;
    border-top-left-radius: 50px;
}
.music-details {
    height: 80%;
    width: 80%;
    display: flex;
    border-radius: 30px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-image: linear-gradient( white, #007bff);
    position: relative;
    padding: 20px;
    display: none;  
    box-shadow: 0px 2px 10px 4px rgb(0, 0, 0, 0.60);
}
#musicDetailsContent{
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.image-holder{
    height: 200px;
    width: 200px;
    background-size: cover;
}
.close-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: navy;
}
.close-btn:hover{
    background-color: rgb(211, 211, 211);
}
.title-holder{
    height: 20%;
    width: 80%;
    background-color: #ddd;
}
.song-control{
    height: 20%;
    width: 70%;
    background-color: #aaa;
}
.music-list {
    display: grid; 
    height: 100%;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
}
.card-favorite-holder{
    height: 200px;
    width: 200px;
    margin-left: 30px;
    margin-top: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 2px 5px 1px rgb(0, 0, 0, 0.60);
}
.favorite-container{
    width: 90%;
}

.card {
    height: 75%;
    width: 90%;
    margin-top: 5px;
    background-size: cover;
    padding: 10px;
    position: relative;
}
input[type="text"] {
    height: 50%;
    width: 90%;
    padding: 5px;
}

button {
    height: 25px;
    width: 100%;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
h3{
    width: fit-content;
    position: absolute;
}
p{
    width: fit-content;
    position: absolute;
}
#song-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card h3, .card p {
    position: absolute;
    left: 7px;
    color: white;
    text-shadow: 1px 1px 7px black;   
}
.card h3 {
    top: 10px;
}
.card p {
    bottom: 10px;
}
#musicDetailsContent p{
    bottom: 125px;
}