.search-box {
  max-width: 600px;
  margin: 0 auto;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.search-input-container:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.search-icon {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  opacity: 0.7;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: inherit;
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.clear-search-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  margin-left: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.clear-search-btn:hover {
  background: var(--surface);
  color: var(--text-primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .search-input-container {
    padding: 0.625rem 0.875rem;
  }

  .search-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .search-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
}.filter-bar {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.clear-filters-btn {
  background: var(--danger);
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.clear-filters-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text-secondary);
  border: 2px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.filter-tag:hover::before {
  left: 100%;
}

.filter-tag:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--text-primary);
}

.filter-tag.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
}

.tag-text {
  text-transform: capitalize;
}

.tag-check {
  font-size: 0.8rem;
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .filter-bar {
    padding: 1rem;
  }

  .filter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .filter-header h3 {
    font-size: 1rem;
  }

  .filter-tags {
    gap: 0.5rem;
  }

  .filter-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .clear-filters-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .filter-tag {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
  }
}.song-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.song-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.6s ease;
}

.song-card:hover::before {
  left: 100%;
}

.song-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.song-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.song-info {
  flex: 1;
}

.song-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.song-artist {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.song-key {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  min-width: 50px;
}

.key-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

.key-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.song-details {
  margin-bottom: 1rem;
}

.song-language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.language-icon {
  font-size: 1rem;
}

.song-chords {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chords-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chord,
.chord-more {
  background: var(--surface);
  color: var(--text-primary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.chord-more {
  color: var(--text-secondary);
  font-style: italic;
}

.song-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.song-tag,
.tag-more {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.tag-more {
  background: var(--secondary);
  font-style: italic;
}

.card-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
}

.view-details {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.song-card:hover .view-details {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .song-card {
    padding: 1.25rem;
  }

  .song-card-header {
    margin-bottom: 0.875rem;
  }

  .song-title {
    font-size: 1.1rem;
  }

  .song-artist {
    font-size: 0.9rem;
  }

  .song-key {
    padding: 0.4rem 0.6rem;
    min-width: 45px;
  }

  .key-label {
    font-size: 0.65rem;
  }

  .key-value {
    font-size: 1rem;
  }

  .song-language {
    font-size: 0.85rem;
  }

  .chords-label {
    font-size: 0.8rem;
  }

  .chord,
  .chord-more {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
  }

  .song-tag,
  .tag-more {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .song-card {
    padding: 1rem;
  }

  .song-card-header {
    gap: 0.75rem;
  }

  .song-title {
    font-size: 1rem;
  }

  .song-artist {
    font-size: 0.85rem;
  }

  .view-details {
    font-size: 0.85rem;
  }
}.home {
  min-height: 100vh;
  padding: 2rem 0;
}

.home-header {
  text-align: center;
  margin-bottom: 3rem;
}

.app-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.app-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.search-section {
  margin-bottom: 2rem;
}

.filter-section {
  margin-bottom: 3rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-header h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.clear-all-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.clear-all-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.no-results-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.no-results p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .home {
    padding: 1rem 0;
  }

  .home-header {
    margin-bottom: 2rem;
  }

  .app-title {
    font-size: 2.5rem;
  }

  .app-subtitle {
    font-size: 1rem;
  }

  .songs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .results-header h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .app-title {
    font-size: 2rem;
  }

  .no-results {
    padding: 2rem 1rem;
  }

  .no-results-icon {
    font-size: 3rem;
  }
}

/* ...existing code... */

.songs-list {
  margin-top: 2rem;
}

.compact-song-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-song-list-item {
  margin: 0;
  padding: 0;
}

.song-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
  border-radius: 0;
  box-shadow: none;
}

.song-card:last-child {
  border-bottom: none;
}

.song-card .song-info {
  flex: 1;
  min-width: 0;
}

.song-card .song-title {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.song-card .song-title {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.song-card .song-artist {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

/* Hide extra info for compact view */
.song-card .song-key,
.song-card .song-tags,
.song-card .card-footer {
  display: none;
}

/* --- Reset Button Styles --- */
.reset-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-left: 1rem;
  box-shadow: 0 1px 4px rgba(37,99,235,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}

.reset-btn:hover,
.reset-btn:focus {
  background: #1742a0;
  box-shadow: 0 2px 8px rgba(37,99,235,0.15);
}

/* --- Results Header --- */
.results-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* --- Clear All Filters Button --- */
.clear-all-btn {
  background: #e5e7eb;
  color: #2563eb;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.clear-all-btn:hover,
.clear-all-btn:focus {
  background: #dbeafe;
}

/* --- No Results --- */
.no-results {
  text-align: center;
  color: #6b7280;
  padding: 2rem 0;
}

.no-results-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}.song-detail {
  min-height: 100vh;
  padding: 2rem 0;
}

.song-detail-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.song-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-btn {
  background: var(--surface);
  color: var(--text-primary);
  border: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.share-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #059669;
  transform: translateY(-2px);
}

.song-detail-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  align-items: start;
}

.song-info-section {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 2rem;
}

.song-main-info {
  margin-bottom: 1.5rem;
  text-align: center;
}

.song-title {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.song-artist {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.song-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.meta-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.key-highlight {
  background: var(--primary);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.song-chords-section,
.song-tags-section {
  margin-bottom: 1.5rem;
}

.song-chords-section h3,
.song-tags-section h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chords-display {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chord-item {
  background: var(--primary);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.chord-item:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.tags-display {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.lyrics-section {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.lyrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.lyrics-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.language-toggle {
  display: flex;
  background: var(--surface);
  border-radius: 8px;
  padding: 0.25rem;
  border: 1px solid var(--border);
}

.toggle-btn {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
}

.toggle-btn:hover:not(.active) {
  color: var(--text-primary);
  background: var(--border);
}

.lyrics-content {
  position: relative;
  overflow: hidden;
}

.lyrics-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  animation: fadeIn 0.5s ease-in-out;
  white-space: pre-line;
}

.lyrics-text.hindi {
  font-family: 'Noto Sans Devanagari', 'Arial Unicode MS', sans-serif;
  font-size: 1.15rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .song-detail-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .song-info-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .song-detail {
    padding: 1rem 0;
  }

  .song-detail-header {
    margin-bottom: 1.5rem;
  }

  .song-title {
    font-size: 1.5rem;
  }

  .song-artist {
    font-size: 0.95rem;
  }

  .song-info-section,
  .lyrics-section {
    padding: 1.25rem;
  }

  .song-meta-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .lyrics-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .language-toggle {
    width: 100%;
    justify-content: center;
  }

  .toggle-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .song-title {
    font-size: 1.35rem;
  }

  .song-artist {
    font-size: 0.9rem;
  }

  .song-info-section,
  .lyrics-section {
    padding: 1rem;
  }

  .back-btn,
  .share-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

  .lyrics-text {
    font-size: 1rem;
  }

  .lyrics-text.hindi {
    font-size: 1.05rem;
  }
}

.song-top-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #23272f;           /* dark background */
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.song-title {
  font-weight: 600;
  color: #60a5fa;                /* lighter blue for contrast */
}

.song-artist,
.song-key,
.song-tag {
  color: #d1d5db;                /* light gray text */
  font-size: 0.97rem;
  margin-right: 0.5rem;
}

.song-tag {
  background: #374151;           /* dark gray tag background */
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.9rem;
  color: #a5b4fc;                /* soft blue for tag text */
}

.completed-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.completed-checkbox {
  accent-color: #60a5fa;         /* match title color */
  width: 1.1rem;
  height: 1.1rem;
}

.completed-text {
  color: #60a5fa;
  font-weight: 600;
  font-size: 1rem;
}

/* Lyrics section full width */
.lyrics-section {
  width: 100%;
  margin-top: 1.5rem;
}
.app {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background) 0%, #111111 100%);
}

.app-loading,
.app-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--surface);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.app-error h2 {
  color: var(--danger);
  margin-bottom: 1rem;
}

.app-error p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 400px;
}

.retry-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #64748b;
  --background: #000000;
  --surface: #1a1a1a;
  --card: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --border: #404040;
  --accent: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

#root {
  min-height: 100vh;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.loading {
  animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}