body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.header {
    /* background: url('header-bg.jpg') no-repeat center center; */
    background-size: cover;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    background: linear-gradient(45deg, #eeeeee, #333333);
    
}

.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    z-index: 3; /* Ensure the hamburger menu is above the sidebar */
    position: absolute;
}

.menu {
    background-color: #333;
    color: white;
}

.menu a {
    text-decoration: none;
    color: #fff;
}

.menu ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    flex: 1;
    text-align: center;
    padding: 10px 0;
}

.sidebar {
    position: absolute;
    float: left;
    scroll-behavior: inherit;
    top: 0;
    left: -270px; /* Adjusted for full hiding including padding */
    width: 250px;
    background-color: #333;
    color: white;
    transition: left 0.3s;
    padding-left: 20px;
    padding-top: 100px;
    z-index: 1;
    display: block;
    overflow: auto;
    border-bottom-right-radius: 30px;
}

.sidebar a {
    color: white;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.station-box {
    width: 90%;
    background-color: #ddd;
    padding: 8px;
    border-radius: 15px;
    border: 2px solid #aaa;
}

.content {
    display: flex;
    padding-top: 0px;
}

.content a {
    color: #000;
}

.year-releases {
    padding: 20px;
}

.artists-list {
    padding: 20px;
    width: 100%;
}

.new-tracks {
    padding: 20px;
    width: 100%;
}

.genre-list {
    padding: 20px;
    width: 100%;
}

.left-content, .right-content {
    padding: 20px;
}

.left-content {
    width: 70%;
    background-color: #f4f4f4;
}

.right-content {
    width: 30%;
    background-color: #e4e4e4;
}

.radio-stations .station, .latest-songs .song {
    margin-bottom: 20px;
}

.radio-stations .station h2, .latest-songs .song h3 {
    margin: 10px 0;
}

.song {
    display: flex;
    align-items: center;
}

.song img {
    width: 75px;
    height: 75px;
    margin-right: 10px;
    border-radius: 15px;
    border: 2px solid #222;
    margin-bottom: 24px;
}

.song .details {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.song .details h3 {
    margin-bottom: 0px;
}

.song .details p {
    padding: 2px;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer ul li {
    margin: 10px 10px;
}

.footer a {
    text-decoration: none;
    color: #fff;
}

.footer ul li a {
    color: white;
    text-decoration: none;
}

.track-image {
    width: 75px;
    height: 75px;
    margin-right: 10px;
    border-radius: 15px;
    border: 2px solid #222;
    margin-bottom: 24px;
}

.cover-image {
    float:left  !important;
    margin-right: 5px  !important;
    width: 125px !important;
    height: 125px !important;
    border-radius: 15px;
    border: 2px solid #222;
  }

  .cover-mini {
    float:left  !important;
    margin-right: 5px  !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 15px;
    border: 2px solid #222;
    margin: 5px;
  }

  .cover-mini-year {
    float:left  !important;
    margin-right: 5px  !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 15px;
    border: 2px solid #222;
    margin: 5px;
  }

  .song-info img {
    border-radius: 15px;
    border: 2px solid #222;   
  }

  .spotify-button {
    border-radius: 0px !important;
    border: 0px !important;   
  }

  @media (max-width: 600px) {
    .cover-image {
        width: 20px;
        height: 20px;
    }
  }

  @media (max-width: 600px) {
    .song img {
      width: 20px;
      height: 20px;
    }
  }