.home-container {
  text-align: center;
  padding: 2rem;
}

.controls {
  margin-bottom: 1rem;
}

.chart-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 600px;
}

.more-info-box {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* ---- Yeni eklenen buton stilleri ---- */
.auth-buttons {
  margin-top: 0.5rem;
}

.auth-buttons .btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

/* Outline buton (Login) */
.auth-buttons .btn-outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.auth-buttons .btn-outline:hover {
  background: #007bff;
  color: white;
}

/* Dolgu buton (Register) */
.auth-buttons .btn-primary {
  background: #007bff;
  color: white;
  border: 2px solid #007bff;
}

.auth-buttons .btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

/* Sayfalama Kontrolleri */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #0056b3;
}

.pagination-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#pageInfo {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
