body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Tabs Container */
.tabs {
  display: flex;
  flex-wrap: wrap;            /* ✅ wrap when too small */
  border-bottom: 2px solid #ccc;
  cursor: pointer;
  background: #f9f9f9;
  padding: 5px;
}

/* Individual Tab */
.tab {
  flex: 1 1 120px;            /* ✅ min width 120px, grow equally */
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-bottom: none;
  background: #eee;
  margin-right: 5px;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: background 0.2s;
}

.tab img {
  width: 20px;
  height: 20px;
}

.tab:hover {
  background: #ddd;
}

/* Active Tab */
.tab.active {
  background: white;
  border-bottom: 2px solid white;
  font-weight: bold;
}

/* Tab Content */
.tab-content {
  border: 1px solid #ccc;
  padding: 20px;
  display: none;
  background: white;
}

.tab-content.active {
  display: block;
}

/* Lyrics Formatting */
.lyrics {
  white-space: pre-line;
  width: 100%;
  height: 100%;
}

/* Titles */
.title {
  font-size: 20px;   /* fixed: use font-size, not size */
  font-weight: bold;
}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    