/* Dropdown Button */
.dropbtn {
  background-color: #00000000;
  color: white;
  padding: 0px;
  font-size: 1px;
  border: none;
  cursor: pointer; /* 커서를 포인터로 변경하여 클릭 가능한 것으로 보이도록 합니다. */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu when the dropdown button is clicked */
.dropdown.active .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown.active .dropbtn {
  background-color: #3e8e41;
}

body {
  background-color: #252525;
  color: white;
  font-family: Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  color: #ffffff;
  font-family: Helvetica, sans-serif;
  font-size: 15vw;
  font-style: normal;
  font-weight: 100;
  text-align: center;
}

.stuff {
  text-align: center;
  margin: 70px 50px 60px 0; /* 여기서 마진값이 너무 크고 오른쪽에 공백이 생깁니다. */
}

#subtitle {
  text-align: center;
  padding: 0px 0; /* 여기서 너무 많은 내부 패딩이 있습니다. */
}

#subtitle hr {
  margin: 20px 0; /* 하위 요소인 hr 태그에도 여백을 조정해줍니다. */
}

#header {
  text-align: center;
  padding: 0;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.value-container {
  text-align: center;
  margin: 30px;
  padding: 10px;
}

.value-container {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 5px solid white;
  width: 180px;
  margin: auto;
  text-align: center;
}

.selectedValue {
  font-size: 20px; /* 0의 폰트 크기 */
}

.value-container span {
  font-size: 80px; /* Hours의 폰트 크기 */
  margin: auto;
}

.circle-container {
  display: flex;
  flex-wrap: wrap; /* 추가: 요소들을 여러 줄에 걸쳐 배치합니다. */
  justify-content: center;
  padding: 20px 30px;
  margin: 30px;
}

.circle {
  position: relative;
  padding: 10px 10px;
  margin: 15px; /* 수정: 요소 간 간격을 좀 더 좁게 조정합니다. */
  flex: 1; /* 추가: 동일한 너비를 가지도록 설정합니다. */
  max-width: 300px; /* 추가: 요소의 최대 너비를 지정합니다. */
}

.circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* table */

table {
  font-family: Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

th {
  background-color: #f2f2f200;
}

tr:hover {
  background-color: #34343412;
}


.hide {
  display: none;
}
