/* Onboarding Banner */
.onboarding-banner {
  background: linear-gradient(135deg, var(--warm-secondary) 0%, var(--warm-light) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(193, 114, 80, 0.3);
}

.onboarding-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.onboarding-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.onboarding-steps {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
}

.onboarding-steps li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.onboarding-steps li:last-child {
  margin-bottom: 0;
}

.onboarding-steps a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.onboarding-banner .btn {
  margin-top: 1rem;
}

/* Pages */
.page-header {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #3d2817;
  font-family: Georgia, 'Times New Roman', serif;
}

.page-header p {
  color: #6b5548;
  font-size: 1.1rem;
}

/* Search Section */
.search-section {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--warm-primary);
}

.btn-search {
  background: linear-gradient(135deg, var(--warm-primary) 0%, var(--warm-secondary) 100%);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 114, 80, 0.3);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.tab {
  flex: 1 1 140px;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tab:hover {
  background: var(--warm-light);
}

.tab.active {
  background: linear-gradient(135deg, var(--warm-primary) 0%, var(--warm-secondary) 100%);
  color: white;
}

/* Tab Content */
.tab-content {
  display: none;
}

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

@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
  }

  .btn-search {
    width: 100%;
  }

  .tabs {
    flex-direction: column;
  }

  .tab {
    flex: none;
    width: 100%;
    justify-content: center; 
    padding: 0.875rem 1rem;
  }
