body {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    background: #fff;
    color: #000;
    text-align: center;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
        --font-size-small: 0.8em;    
    }
 @media (hover: none) {
        button:hover,
        a:hover {
          background-color: initial;
          color: inherit;
        }
      }
#songTitle {
 font-size: var(--font-size-small);
 text-align: left;
     
}
body.no-scroll {
    overflow: hidden;
}

.footer{
    background: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr; 
    align-items: center;
    padding: 0.5rem;
    z-index: 20;
}
.progressbar-wrapper{
    display: flex;
    justify-content: space-evenly;
    align-content: flex-end;
    align-items: center;
    gap: 2px;

}
.controls{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}
#playPause {
    width: 80px; /* Set a fixed width */
    text-align: center; /* Ensure text is centered */

}
button {
    background: #fff;
    color: #000;
    border: solid 2px #000;
    font-weight: bold;
    padding: 5px;
    font-size: var(--font-size-small);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

button:hover {
    background: #000;
    color: #fff;
}
#increaseBtn, #decreaseBtn{
    width: 30px;
    text-align: center;
}
#progressBar {
    width: 100%;
    appearance: none;
    background: #000;
    height: 5px;
    border-radius: 5px;
    outline: none;
}


#progressBar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

#currentTime, #totalTime {
    font-size: 0.8em;
}

.artwork-wrapper{
    padding: 0;
    width: 100vw;

}
.artwork-wrapper img{
    width: 50%;
}
.archive-grid {
    position: relative;
    margin-top: 5em;
    left: 0;
    width: 100%;
    padding: 5em;
    gap: 4em;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Default grid with 10 columns */
    transition: grid-template-columns 0.3s ease-in-out; /* Smooth transition */
}

/* Archive grid items */
.archive-item {
    width: 100%;
}
.enter-wrapper{
    width: 100vw;
    height: 100vh;
    display: flex;
    place-content: center;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    cursor: pointer;
}
.enter-wrapper p{
    text-align: center;
}
.enter-play-btn{

    margin: 5px;
}
  .archive-item img {
    width: auto;
    height: auto;
    display: block;
  }
  .button-container{
    position: fixed;
    padding: 0.5rem;
    top: 0.5rem;
    right: 0;
    z-index: 20;
  }
  .button-container button{
    font-size: 1.1em;
    background: #fff;
    color: #000;
    border: solid 2px #000;
    font-weight: bold;
    padding: 5px 8px;
    cursor: pointer;
    transition: 0.2s ease-in-out;

  }
  .button-container button:hover{
    font-size: 1.1em;
    background: #000;
    color: #fff;
    border: solid 2px #000;

  }

  @media (max-width: 768px) {
    .artwork-wrapper img {
        width: 100%;
    }
    .archive-grid {
        padding: 1em;
        gap: 2em;
        margin: 0;
  }

.footer {
    display: grid;
    grid-template-rows: auto auto auto; /* Stack the items vertically */
    grid-template-columns: 1fr; /* Make the columns stack */
    padding: 1rem;
    gap: 0.3rem;
}

/* Adjust individual elements for mobile */
.progressbar-wrapper {

}

.controls {
    display: flex;
    justify-content: center;
    width: 100%;
}

#songTitle {
    text-align: center;
    font-size: 1rem; /* Adjust font size if needed */
}

/* Adjust buttons for mobile */
.controls button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}
}