.side-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.side-menu-toggle:hover {
  opacity: 0.8;
}
/* 
#searchFilter {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
} */

@media (max-width: 550px) {
  /* .navbar-top {
    flex-wrap: wrap;
  }
  
  .one.column {
    width: 25%;
  }
  
  .ten.columns {
    width: 100%;
    order: 3;
    margin-top: 1rem;
  }
   */
  /* #searchFilter {
    width: 100%;
  } */
}

.side-menu {
  position: fixed;
  left: -100%;
  top: 0;
  width: 250px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 999;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  left: 0;
}

.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  display: none;
}

.side-menu-overlay.visible {
  display: block;
}

.side-menu-header {
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid #eee;
}

.side-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.side-menu-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}

.side-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu-item {
  margin: 10px 0;
}

.side-menu-link {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

.side-menu-link:hover {
  color: #33C3F0;
}

/* Playlist section */
.playlist-label {
  background-color: #f0f0f0;
  color: #333;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 -20px 8px -20px;
  padding: 10px 20px;
}

#playlist-buttons {
  display: flex;
  flex-direction: column;
}

.playlist-btn {
  background: none !important;
  border: none !important;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  margin: 0 -20px;
  padding: 10px 20px;
  text-align: left;
  text-transform: none;
  width: calc(100% + 40px);
}

.playlist-btn:hover,
.playlist-btn:focus {
  background: #f5f5f5 !important;
  border: none !important;
  color: #33C3F0;
}

button.playlist-btn.button-primary {
  background: none !important;
  border: none !important;
  color: #333 !important;
  font-weight: 700;
}

/* Reset App button */
.reset-app-item {
  text-align: center;
}

.reset-app-button {
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  padding: 6px 16px;
}

.reset-app-button:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}

.reset-app-hint {
  font-size: 0.82rem;
  color: #bbb;
  margin-top: 4px;
}

/* Diagnostics section */
.diagnostics-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}

.diagnostics-list {
  margin: 0 0 12px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 3px;
}

.diagnostics-list dt {
  font-size: 0.85rem;
  color: #999;
  white-space: nowrap;
}

.diagnostics-list dd {
  font-size: 0.85rem;
  font-family: monospace;
  color: #444;
  margin: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Hide sort popover on mobile */
  .sort {
    display: none;
  }
  
  /* Make the menu wider on mobile for better touch targets */
  .side-menu {
    width: 80%;
    max-width: 300px;
  }
  
  /* Ensure the search filter appears below the navbar */
  #searchFilter {
    width: 100%;
    clear: both;
    margin-top: 10px;
  }
} 