/* 네비게이션 스타일 */
.main-nav {
  display: flex;
  flex-direction: column; /* 버튼을 여러 줄로 배치 */
  align-items: center; /* 가운데 정렬 */
  gap: 10px; /* 줄 간 간격 */
  margin-top: 20px;
}

.nav-row {
  display: flex;
  justify-content: center; /* 버튼을 가운데 정렬 */
  gap: 10px; /* 버튼 간 간격 */
}

.nav-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #0056b3;
}
