#navbar {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  margin-bottom: 10px;
  font-family: yg-jalnan;
  background-image: url("../../assets/title_bg_green.png");
  background-size: contain; /* 이미지를 컨테이너에 맞추기 위해 설정 */
  background-repeat: no-repeat; /* 이미지 반복 없음 */
  background-position: right center; /* 이미지를 오른쪽 중앙에 배치 */
}
.title_container {
  display: flex;
}
.colab {
  display: flex;
  align-items: end;
  width: 50%;
  justify-content: right;
  font-size: 12px;
  color: #6f7075;
  font-family: Pretendard;
  padding: 3px;
}
.title {
  margin-top: 10px;
  margin-left: 20px;
  width: 65%;
  color: #f68c30;
  align-items: center;
  font-weight: bold;
  font-size: 32px;
  display: flex;
  height: 75%;
}
.subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #fc9c37, #cf2c05);
  color: white;
  font-size: 12px;
  height: 35%;
  width: 100%;
  font-family: Pretendard;
  padding-top: 5px;
  padding-bottom: 5px;
}
.buttons {
  display: flex; 
  flex-wrap: nowrap; 
  overflow-x: auto;
  padding-bottom: 10px; 
  max-width: 100%; 
}
/* 스크롤 바 */
.buttons::-webkit-scrollbar {
  height: 4px; /* 스크롤 바의 너비를 설정합니다 */
}

/* 스크롤 바의 track (슬라이더를 따라 이동하는 트랙) */
.buttons::-webkit-scrollbar-track {
  background-color: transparent; /* 트랙의 배경색을 투명하게 설정합니다 */
}

/* 스크롤 바의 thumb (슬라이더) */
.buttons::-webkit-scrollbar-thumb {
  background-color: #888; /* 슬라이더의 배경색을 설정합니다 */
  border-radius: 5px; /* 슬라이더의 모서리를 둥글게 만듭니다 */
}
.control-btn {
  padding: 10px 20px; /* 버튼의 내부 여백을 설정합니다 */
  border-radius: 100px;
  font-size: 16px; /* 버튼의 글꼴 크기를 설정합니다 */
  border: 1px solid #e8e9ed; /* 버튼의 테두리 스타일을 설정합니다 */
  background-color: #ffffff; /* 버튼의 배경색을 설정합니다 */
  color: #5c5d61; /* 버튼의 글꼴 색상을 설정합니다 */
  cursor: pointer; /* 마우스 커서를 손가락 형태로 설정합니다 */
  margin-right: 5px; /* 버튼 간의 오른쪽 여백을 설정합니다 */
  font-family: "Pretendard-Regular", sans-serif; /* 폰트를 버튼 내부 텍스트에도 적용합니다 */
}

.control-btn:hover {
  background-color: #ff4d26; /* 마우스를 올렸을 때의 버튼 배경색을 설정합니다 */
  border-color: transparent; /* 마우스를 올렸을 때의 테두리 색상을 설정합니다 */
  color: #ffffff;
}

.control-btn:active {
  background-color: #ff4d26; /* 버튼이 클릭되었을 때의 배경색을 설정합니다 */
  border-color: transparent; /* 버튼이 클릭되었을 때의 테두리 색상을 설정합니다 */
  color: #ffffff; /* 버튼이 클릭되었을 때의 텍스트 색상을 설정합니다 */
}

.subtitleNButtonContainer{
  display: flex;
  justify-content: space-between;
}
