/* Login and logout */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.log-body {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191414;
}

.log-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid #d9dadc;
}

.log-spotify-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.log-spotify-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.log-h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #191414;
}

.log-subtitle {
    font-size: 16px;
    color: #535353;
    margin-bottom: 32px;
    line-height: 1.4;
}

.log-button {
    width: 100%;
    padding: 12px 32px;
    border-radius: 500px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.log-primary-button {
    background: #1db954;
    color: white;
}

.log-primary-button:hover {
    background: #1ed760;
    transform: scale(1.04);
}

.log-secondary-button {
    background: transparent;
    color: #535353;
    border: 1px solid #d9dadc;
}

.log-secondary-button:hover {
    border-color: #191414;
    transform: scale(1.04);
}

.log-status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px;
    background: #d7f4e3;
    border-radius: 4px;
    font-size: 14px;
    color: #0d7b3c;
}

.log-status-dot {
    width: 8px;
    height: 8px;
    background: #1db954;
    border-radius: 50%;
}

/* Navigation bar */
.harmotone-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.harmotone-nav-logo {
font-size: var(--text-3xl);
line-height: var(--text-3xl--line-height);
font-weight: var(--font-weight-bold);
color: var(--color-gray-900);
text-decoration: none;
font-family: var(--font-sans);
}

.harmotone-nav-link {
color: var(--color-gray-700);
padding: 0.5rem;
text-decoration: none;
font-weight: var(--font-weight-medium);
font-family: var(--font-sans);
font-size: var(--text-base);
line-height: var(--text-base--line-height);
}

.harmotone-nav-link.secondary {
color: var(--color-gray-500);
}

#base-content {
  padding-top: 64px; /* Creates space for the fixed navbar */
  background-color: #f9fafb; /* gray-50 */
  min-height: calc(100vh - 64px); /* Ensures background covers full height */
}

/* Artist Page Styles */

.artist_page {
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;  /* px-6 */
  padding-right: 1.5rem;
  padding-top: 2rem;    /* py-8 */
}

.artist_page__header {
  background-color: white;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  border-radius: 1rem; /* rounded-xl */
  padding: 1.5rem; /* p-6 */
}

.artist_page__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* gap-6 */
  align-items: center;
}

@media (min-width: 768px) {
  .artist_page__container {
    flex-direction: row;
    align-items: flex-start; /* Changed from center */
  }
  
  .artist_page__image-wrapper {
    margin-top: 2.5rem; /* Aligns image with description text */
  }
}

.artist_page__image-wrapper {
  flex-shrink: 0;
}

.artist_page__image {
  width: 12rem; /* w-48 */
  height: 12rem; /* h-48 */
  object-fit: cover;
  border-radius: 0.5rem; /* rounded-lg */
}

.artist_page__image-fallback {
  width: 12rem;
  height: 12rem;
  background-color: #e5e7eb; /* gray-200 */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  color: #6b7280; /* gray-500 */
  font-size: 1rem;
  text-align: center;
}

.artist_page__info {
  flex: 1 1 auto;
  min-width: 0;
}

.artist_page__header-row {
  display: flex;
  align-items: center;
  gap: 1rem; /* gap-4 */
  margin-bottom: 1rem; /* mb-4 */
  flex-wrap: wrap;
}

.artist_page__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  text-align: left;
}

.artist_page__genre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem; /* gap-1 */
  background-color: #f5f3ff; /* purple-50 */
  color: #6d28d9; /* purple-700 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  padding: 0.25rem 0.75rem; /* px-3 py-1 */
  border-radius: 9999px; /* rounded-full */
  white-space: nowrap;
}

.artist_page__subgenre-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f9fafb; /* gray-50 */
  color: #6b7280; /* gray-500 */
  font-size: 0.875rem; /* text-xs */
  font-weight: 500;
  padding: 0.25rem 0.75rem; /* px-2 py-1 */
  border-radius: 9999px; /* rounded-full */
  white-space: nowrap;
}

.artist_page__genre-icon {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
}

.artist_page__description {
  color: #4b5563; /* gray-600 */
  margin-top: 0;
}