/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
  }
  
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
 /* styles.css */
#box {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background-color: red; /* Start with red */
    border-radius: 10px;
    cursor: pointer;
    display: none; /* Hidden initially */
  }
   
  
  #startButton {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  #startButton:hover {
    background-color: #0056b3;
  }
  
  #result {
    font-size: 18px;
    margin-top: 10px;
  }

  /* Responsive adjustments for mobile */
@media (max-width: 600px) {
  body {
    padding: 10px;
    font-size: 1rem;
  }
  .container, .content, .blog-entries, .song-list-container {
    max-width: 100vw;
    width: 98vw;
    padding: 8px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  h1 {
    font-size: 1.3rem;
  }
  .home {
    position: static;
    margin-top: 20px;
    left: unset;
    top: unset;
    text-align: center;
  }
  .imgsource {
    position: static;
    margin-top: 20px;
    left: unset;
    bottom: unset;
    text-align: center;
  }
  .song-list button,
  .blog-list button,
  #queue-controls button,
  #startButton {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .menu {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .channel {
    width: 90vw;
    height: auto;
    margin: 10px auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
  }
  .channel img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }
  .label {
    font-size: 1rem;
  }
  #audio-controls audio {
    max-width: 100vw;
  }
  #queue-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
