body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 브라우저 높이로 설정 */
}

.content-wrapper {
    flex: 1;
}


h2 {
  font-size: 1.12rem !important;
  /* 이 값을 원하는 크기로 조정 */
}

h1{
    font-size: 1.4rem !important;
    /* 이 값을 원하는 크기로 조정 */
  }

/* Bulma 기본 테이블 스타일 재정의 */
table,
table th,
table td {
  background-color: transparent !important;
  /* 배경색 제거 */
  border: none !important;
  /* 테두리 제거 */
  border-radius: 0 !important;
  /* 모서리 둥글게 하는 속성 제거 */
}

table {
  box-shadow: none !important;
  /* 그림자 제거 */
}

th,
td {
  padding: .5rem !important;
  /* 셀 내부의 여백 재조정 (필요하면 값을 수정) */
}

/* 짝수 행의 배경색을 투명하게 만들기 */
table tr:nth-child(even) {
  background-color: transparent !important;
}

/* 마우스를 올렸을 때 해당 행 강조 */
table tr:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
}

/* 기본 셀 너비 설정 */
.table-cell {
  width: 250px;
  /* 기본 셀 너비 */
}

/* 화면의 너비가 800px 이상일 때 셀의 너비 조정 */
@media (min-width: 800px) {
  .table-cell {
    width: 3000px;
    /* 더 넓은 너비로 조정 */
  }
}

.card {
  height: 100%;
  border-radius: 10px;
  /* 둥글기 정도를 조절하려면 이 값을 변경하세요 */
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* 필요에 따라 조정 가능 */
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  /* 카드의 패딩 제거 */
  padding-right: 0;
  /* 카드의 패딩 제거 */
}

.card-content hr {
  width: 80%;
  border: none;
  border-top: 1px solid #ccc;
  margin: 10px 0;
  /* 상하 여백 추가 */
}

/* 셀렉트 박스 크기 및 스타일 변경 */
select {
  font-size: 1.2rem;
  height: 40px;
  /* 높이를 조절합니다. */
  padding: 0.25rem 1rem;
  width: 100%;
  /* 모든 셀렉트 박스의 크기를 통일 */
  max-width: 150px;
  /* 적절한 최대 너비 설정 */
  box-sizing: border-box;
  background-color: white;
  transition: background-color 4.5s;
  /* 4초 동안 배경색이 변경됩니다. */
  border-radius: 5px;
  /* 둥글기 정도를 조절하려면 이 값을 변경하세요 */
}

/* 값이 변경될 때의 셀렉트 박스 배경색 */
select.changed {
  background-color: #fda814;
  /* 연한 주황색 (Moccasin) */
}


/* 선택 시 테두리 스타일 */
select:focus {
  background-color: #f5f5f5;
  border-color: #3273dc;
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.label-cell {
  height: 40px;
  /* 동일한 높이로 조절합니다. */
  font-size: 1.2rem;
  /* 글자 크기는 select와 동일하게 설정 */
  padding: 0.1rem 1rem 0.5rem 1rem;
  /* 윗쪽 패딩을 0.7rem으로 조절 */
  text-align: center;
  /* 텍스트 중앙 정렬 */
  vertical-align: middle;
  /* 셀의 수직 중앙 정렬 */
  background-color: #f9f9f9;
  /* 배경색은 select의 배경색과 비슷하게 조정 */
  /* font-weight: bold; */
  /* 볼드 스타일 적용 */
}

#snackbar {
  visibility: hidden;
  /* 기본 상태에서 스넥바를 숨깁니다. */
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 999;
  left: 50%;
  /* 화면의 중앙에 위치하도록 합니다. */
  bottom: 100px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  /* 스넥바를 보이게 합니다. */
  /* 애니메이션을 추가합니다. */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50px;
  /* bottom을 top으로 변경 */
  font-size: 17px;
}

.snackbar.show {
  visibility: visible;
  animation: slideUp 0.5s forwards, fadeout 0.5s 2.5s;
}

@keyframes slideUp {
  0% {
    top: -50px;
    /* 0에서 -50px로 변경하여 스넥바가 위에서 아래로 내려옵니다 */
    opacity: 0;
  }

  100% {
    top: 10px;
    /* 0에서 10px로 변경 */
    opacity: 1;
  }
}

footer {
    background-color: #2c3e50;  /* 어두운 색상으로 설정, 원하는 색상으로 변경 가능 */
    color: #ecf0f1;  /* 밝은 색상으로 텍스트 설정 */
    padding: 1rem 0; /* 필요한 패딩 값으로 조절 */
    font-size: 0.9rem;  /* 글자 크기 설정 */
}

footer a {
    color: #3498db;  /* 하이퍼링크 색상 설정 */
    text-decoration: none;  /* 밑줄 제거 */
}

footer a:hover {
    text-decoration: underline;  /* 마우스 오버 시 밑줄 표시 */
}

.container {
    max-width: 1200px;  /* 컨테이너 최대 너비 설정 */
    margin: 0 auto;  /* 중앙 정렬 */
    padding: 0 15px;  /* 좌우 패딩 설정 */
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;  /* 셀 간 간격 조정 */
}

.col-lg-12 {
    flex: 0 0 100%;  /* 100% 너비로 설정 */
    max-width: 100%;  /* 100% 최대 너비로 설정 */
    padding: 0 15px;  /* 좌우 패딩 설정 */
}
