/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    height: 85%;
    width: 100%;
    background-color: #111;
    display: flex;
    padding: 5vw 10vw;
}

#left {
    height: 100%;
    background-color: #333;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#current-song-image {
    width: 100%;
    height: 100%;
    max-width: 60px;  /* Smaller image size */
    max-height: 60px; /* Ensure it fits within the frame */
    border-radius: 10px;
    overflow: hidden;
}

#current-song-image img {
    width: 100%;
    height: auto;
    object-fit:contain;
    transition: transform 0.3s ease-in-out;
}

#right {
    height: 100%;
    width: 55%;
    padding: 0 3vw;
}

#right h3 {
    font-size: 40px;
}

#all-songs {
    height: 85%;
    margin-top: 30px;
}

.song-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #5a5a5a;
    padding: 10px 12px;
}

.song-card:hover {
    background-color: #1e1e1e;
}

.song-card:nth-last-child(1) {
    border-bottom: 1px solid #5a5a5a;
}

.song-card .part1 {
    display: flex;
    align-items: center;
    pointer-events: none;
}

.song-card img {
    height: 40px;  /* Reduced the size of the song card image */
    width: 40px;
    margin-right: 20px;
    border-radius: 10px;
}

.song-card h2 {
    font-size: 18px;
    font-weight: 600;
}

.song-card h6 {
    font-weight: 500;
    font-size: 16px;
}

#player {
    height: 15%;
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#player h3 {
    background-color: rgba(30, 30, 30, 0.737);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#player h3 i {
    font-size: 24px;
}

#player h3:active {
    scale: 0.93;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #main {
        flex-direction: column;
        padding: 2rem;
    }

    #left {
        width: 100%;
        padding: 1rem;
        justify-content: center;
        align-items: center;
    }

    #current-song-image {
        max-width: 50px;  /* Even smaller on smaller screens */
        max-height: 50px;
    }

    #right {
        width: 100%;
        padding: 1.5rem;
    }

    #right h3 {
        font-size: 1.75rem;
    }

    .song-card {
        padding: 0.8rem 1rem;
    }

    #player h3 {
        padding: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    #right h3 {
        font-size: 1.5rem;
    }

    .song-card {
        padding: 0.6rem 0.8rem;
    }

    #player {
        flex-direction: column;
        gap: 1rem;
    }

    #player h3 {
        padding: 0.6rem;
    }
}
