/* style.css */
body {
  font-family: 'Work Sans', sans-serif;
  background-color: #1a1a1a;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0; 
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, strong {
  font-family: 'Space Mono', monospace;
  color: #00ffcc;
  text-transform: uppercase;
}

.music-card .caption {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: #00ffcc; /* Matches your teal headers */
  line-height: 1.5;
  margin-top: 15px;
  border-top: 1px solid #333;
  padding-top: 10px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background: #00ffcc;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* The Wide Crate Container */
.crate-container {
    width: 95%;
    max-width: 1100px;
    margin: 30px auto;
    border: 2px solid #00ffcc;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    overflow: hidden; /* Clips the white blotch */
    position: relative;
}

/* THE FIX: This stretches the Google Sheet to fill the width */
.crate-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

#setup ul {
  list-style: none;
  padding: 0;
}

#setup li {
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}