body {
  /* background-color: rgb(35, 39, 60); */ /* 어두운 회색 */
  background-color: #23273c;
  color: #f0f0f0; /* 밝은 텍스트 색상 */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap'); */
.default-font {
  /* font-family: "Orbit", sans-serif; */
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.navbar-nav .nav-item .nav-link.active {
  font-weight: bold;
  color: #007bff; /* 하이라이트 색상 */
}

.navbar {
  width: 100%;
}

.navbar .container-fluid {
  padding: 0 15px;
}

.navbar-brand {
  margin: 0 15px;
}

.navbar-nav .nav-item .nav-link {
  color: #f0f0f0;
}

.navbar-nav .nav-item .nav-link.active {
  font-weight: bold;
  color: #007bff;
}

.navbar-nav .nav-item.divider {
  height: auto;
  margin: 0 15px;
  border-left: 1px solid #555;
}

.navbar-nav .nav-item .nav-link {
  white-space: nowrap;
}

.footer {
  background-color: rgb(226, 231, 255); /* Footer 배경 색상 */
  color: #6c6c6c; /* 밝은 텍스트 색상 */
  padding: 16px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto; /* Footer를 페이지 하단에 배치 */
}

.footer-logo {
  height: 100%;
  max-height: 36px;
  margin-left: 10px;
}
