/* 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;
  letter-spacing: -5px;
}

h4 {
  color: #c4c4c4;
  font-family: Helvetica, sans-serif;
  font-size: 2vw;
  font-style: normal;
  font-weight: 100;
  text-align: center;
  letter-spacing: -1px;
  margin-top: -7%;
}

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

#minititle {
  text-align: left;
  padding: 0px 0; /* 여기서 너무 많은 내부 패딩이 있습니다. */
  margin-left: 10px;
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  font-style: normal;
}

#feelingtitle {
  text-align: right;
  padding: 0px 0; /* 여기서 너무 많은 내부 패딩이 있습니다. */
  margin-right: 10px;
  margin-top: -30px;
  font-size: 11px;
  font-family: Helvetica, sans-serif;
  font-style: normal;
}

span.Reasonable {
  color: rgb(0, 255, 0);
  font-weight: lighter;
}

span.Regrettable {
  color: rgb(255, 0, 255);
  font-weight: lighter;
}

#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 {
  display: flex; /* Use flexbox to center content */
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  border-radius: 50%; /* Keep your circle shape */
  border: 4px solid white; /* Keep your border */
  width: 180px; /* Your width */
  height: 180px; /* Make height equal to width to maintain circle shape */
  margin: auto; /* Auto margin for centering the whole container */
  text-align: center; /* Center text */
  padding: 20px; /* Your padding */
  font-size: 18px;
}


.value-container span {
  font-size: 90px; /* 295 폰트 크기 */
  margin: -10px;
}

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

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

/* table */

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

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

th {
  background-color: #f2f2f200;
}

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


.hide {
  display: none;
}

#moviesTable {
  table-layout: fixed;
  width: 100%; /* Adjust the table width as needed */
}

#moviesTable th, #moviesTable td {
  overflow: visible;
  white-space: normal; 
  text-overflow: clip; 
}


#moviesTable th:nth-child(1), #moviesTable td:nth-child(1) {
  width: 2%;
}

#moviesTable th:nth-child(2), #moviesTable td:nth-child(2) {
  width: 20%;
}

#moviesTable th:nth-child(3), #moviesTable td:nth-child(3) {
  width: 3%;
}

#moviesTable th:nth-child(4), #moviesTable td:nth-child(4) {
  width: 5%;
}

#moviesTable th:nth-child(5), #moviesTable td:nth-child(5) {
  width: 10%;
}

#moviesTable th:nth-child(6), #moviesTable td:nth-child(6) {
  width: 10%;
}

#moviesTable th:nth-child(7), #moviesTable td:nth-child(7) {
  width: 5%;
}

/* Repeat for each column, adjusting widths as necessary */

@media screen and (max-width: 1459px) {


.value-container {
  width: 140px; /* Your width */
  height: 140px; /* Make height equal to width to maintain circle shape */
  padding: 20px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 70px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 3px;
}

}


@media screen and (max-width: 1205px) {

  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 120px; /* Your width */
  height: 120px; /* Make height equal to width to maintain circle shape */
  padding: 15px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 70px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 3px;
}

}



@media screen and (max-width: 1071px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 120px; /* Your width */
  height: 120px; /* Make height equal to width to maintain circle shape */
  padding: 15px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 70px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 3px;
}

}


@media screen and (max-width: 1054px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 113px; /* Your width */
  height: 113px; /* Make height equal to width to maintain circle shape */
  padding: 16px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 60px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 3px;
}

}

@media screen and (max-width: 1209px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 110px; /* Your width */
  height: 110px; /* Make height equal to width to maintain circle shape */
  padding: 16px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 60px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 3px;
}

}

@media screen and (max-width: 1014px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 105px; /* Your width */
  height: 105px; /* Make height equal to width to maintain circle shape */
  padding: 15px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 50px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 0px;
}

}

@media screen and (max-width: 1005px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 105px; /* Your width */
  height: 105px; /* Make height equal to width to maintain circle shape */
  padding: 15px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 50px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: 0px;
}

}

@media screen and (max-width: 974px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 14px
}

.value-container {
  width: 100px; /* Your width */
  height: 100px; /* Make height equal to width to maintain circle shape */
  padding: 10px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 50px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: -10px;
}

}

@media screen and (max-width: 894px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 13px
}

.value-container {
  width: 100px; /* Your width */
  height: 100px; /* Make height equal to width to maintain circle shape */
  padding: 10px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 50px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: -20px;
}

}

@media screen and (max-width: 828px) {
  
  #moviesTable th, #moviesTable td {
    font-size: 12px
}

.value-container {
  width: 100px; /* Your width */
  height: 100px; /* Make height equal to width to maintain circle shape */
  padding: 10px; /* Your padding */
  font-size: 18px;
}

.value-container span {
  font-size: 50px; /* 295 폰트 크기 */
  margin: -10px;
}

.circle {
  padding: 5px 5px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 17px;
}

.circle-container {
  padding: 10px 20px;
  margin: -25px;
}

}


/* ipad mini */


@media screen and (max-width: 768px) {

  .body {
    text-align: center;
    align-items: center; 
  }
  
  #moviesTable th, #moviesTable td {
    font-size: 10px
}

.value-container {
  width: 80px; /* Your width */
  height: 80px; /* Make height equal to width to maintain circle shape */
  padding: 10px; /* Your padding */
  font-size: 15px;
}

.value-container span {
  font-size: 40px; /* 295 폰트 크기 */
  margin-top: 10px;
  margin-bottom: -15px;
}

.circle {
  padding: 2px -20px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 13px;
}

.circle-container {
  padding: 20px -20px;
  margin: -55px;
}

}

@media screen and (max-width: 375px) {

  .body {
    text-align: center;
    align-items: center; 
  }
  
  #moviesTable th, #moviesTable td {
    font-size: 5px
}

.value-container {
  width: 30px; /* Your width */
  height: 30px; /* Make height equal to width to maintain circle shape */
  padding: 10px; /* Your padding */
  font-size: 10px;
  border: 1px solid white; /* Keep your border */
}

.value-container span {
  font-size: 15px; /* 295 폰트 크기 */
  margin-top: 1px;
  margin-bottom: -10px;
}

.circle {
  padding: 2px -20px;
  max-width: auto; /* 추가: 요소의 최대 너비를 지정합니다. */
  font-size: 13px;
}

.circle-container {
  padding: 20px -20px;
  margin: -55px;
}

}