*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    margin-top: 80px;
    font-family: Arial, sans-serif;
    background-color: rgb(11, 23, 40);
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 60px auto 20px auto;
}

div.header {
    width: 100%;
    position: fixed;
    background-color: rgb(14, 29, 49); 
    color: aliceblue; 
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    top: 0;
    left: 0;
}

div.header div.left-header{
    width: 25vw;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    
}
.clickable{
    cursor: pointer;
}
div.header div.left-header img {
    width: 3.5em;
    height: 3.5em;
}
div.header div.right-header{
    width: 35vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
div.header div.right-header div.search-bar img {
    width: 1.7em;
    height: 1.2em;
    
}
div.header div.right-header div.search-bar{
    height: 1.2em;
    display: flex;
    align-items: center;
}
div.header div.right-header div.search-bar input{
    height: 1.2rem;
    background-color: rgb(24, 49, 83);
    border: 0px;
}
div.header div.right-header img.notification-icon {
    width: 2em;
    height: 1.5em;
}
div.header div.right-header img.user-icon{
    border-radius: 50%;
    width: 3.3em;
    height: 3.3em;
    cursor: pointer;
}


div.main-content {
    display: flex;
    flex-direction: row;
}
div.main-content div.left-panel{
    display: flex;
    width: 70vw;

    border: 1px solid whitesmoke;
    flex-direction: column;
    justify-content: space-around;
    padding: 2em;

}
div.main-content div.left-panel div.boxes{
    display: flex;
    width: 66vw;
}

div.main-content div.left-panel div.boxes .box{
    display: inline-block;
    height: auto;
    width: 35%;  
    margin: 10px;
}
div.main-content div.left-panel div.boxes .box:hover{
    transform: scale(1.1);
    cursor: pointer;
}








.container {
    width: 66vw;
}
.latest-release{
    width: 66vw;
}
.latest-release {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
}
.release-item {
    display: grid;
    grid-template-columns: 33% 1fr auto;
    gap: 10px;
    align-items: center;
}
.image-container {
    position: relative;
    width: 50px;
    height: 50px;
}
.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.image-container:hover img {
    transform: scale(1.1);
}
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    opacity: 0;

    border-radius: 5px;
}
.image-container:hover .play-overlay {
    opacity: 1;
    cursor: pointer;
}
.release-details {
    display: flex;
    flex-direction: column;
}
.release-details p {
    font-size: 0.9em;
    color: #aaa;
}
.release-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}
.release-meta button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5em;
    cursor: pointer;
}








.artists-scroll,
.latest-english-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}


.artist-item,
.track-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.artist-item img,
.track-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-item:hover img,
.track-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}








.right-panel {
    flex: 1;
    padding: 20px;
    background-color: rgb(14, 29, 49);
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    z-index: 999;
}

.queue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #282828;
  }
.queue-list {
    height: 70%;
    overflow-y: auto;
    scrollbar-width: none;
}
.queue-item {
    width: 90%;
    height: 20%;
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #282828;
}
  
.queue-number {
    width: 30px;
    text-align: center;
    color: #b3b3b3;
}
  
.queue-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
  
.queue-info {
    flex-grow: 1;
}
  
.song-title {
    display: block;
    font-weight: bold;
}
  
.artist-name {
    display: block;
    font-size: 0.8em;
    color: #b3b3b3;
}
  
.queue-action {
    font-size: 1.2em;
    cursor: pointer;
}
.queue-dropdown:hover{
    cursor: pointer;
}