/* Sheet Music Finder styles */
.sheet-music-finder {
  background: #181818;
  color: #fff;
  border-radius: 18px;
  max-width: 480px;
  margin: 48px auto;
  padding: 32px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  text-align: center;
}
.sheet-music-finder h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}
.sheet-music-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.sheet-music-form input,
.sheet-music-form select {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1.1rem;
  background: #222;
  color: #fff;
  outline: none;
}
.sheet-music-form button {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: #ff6a00;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.sheet-music-form button:hover {
  background: #ff8800;
}
.sheet-music-results {
  margin-top: 16px;
  font-size: 1.1rem;
}
.sheet-link {
  color: #ff6a00;
  font-weight: 600;
  text-decoration: underline;
}
.loading {
  color: #ff6a00;
  font-size: 1.1rem;
}
.no-results {
  color: #ff6a00;
  font-size: 1.1rem;
  margin-top: 24px;
}
iframe {
  border-radius: 12px;
  background: #222;
}
/* Mic visualizer styles */
.audio-finder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.mic-visualizer {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  box-shadow: 0 0 0 16px #fff;
  transition: box-shadow 0.2s;
}
.mic-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  outline: none;
}
/* Dashboard tabs styles */
.dashboard-tabs {
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.tab-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.tab-btn.active {
  background: #fff;
  color: #222;
}
.tab-content {
  background: #222;
  border-radius: 0 0 12px 12px;
  padding: 24px 16px;
  margin-bottom: 0;
  margin-top: 0;
  min-height: 120px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.center-content {
  text-align: center;
  margin-top: -200px;
}


.gradient-text {
  font-size: 6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 2px;
}


.subtitle {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.get-started-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 40px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(31,38,135,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.get-started-btn:hover {
  background: #eee;
  color: #222;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
  .gradient-text {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .get-started-btn {
    padding: 10px 24px;
    font-size: 1rem;
  }
  .center-content {
    margin-top: -40px;
    padding: 0 10px;
  }
}
