/* .button-container {
  position: absolute;
  top: 20px;
  right: 20px;
} */

.button-container button {
  background-color: lightgreen;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 50px;
}
.button-container button:hover {
  background-color: limegreen;
}
.button-container #logoutText {
  font-size: 20px;
  color: rgb(250, 3, 3);
}

table {
  position: relative;
  margin: auto;
}

img {
  display: block;
  margin: auto;
}

.text {
  position: absolute; /* 텍스트를 백그라운드 이미지 위에 위치시키기 위해 position 속성을 추가합니다. */
  top: 110px; /* 텍스트 위치 조정 */
  right: 30px; /* 텍스트 위치 조정 */
  color: black; /* 텍스트 색상 지정 */
  font-size: 1em; /* 텍스트 크기 조정 */
}

label {
  display: block;
  margin-bottom: 5px;
}

h1 , h3{
  text-align: center;
 }

 .button-container {
  position: absolute; /* 텍스트를 백그라운드 이미지 위에 위치시키기 위해 position 속성을 추가합니다. */
  top: 100px; /* 텍스트 위치 조정 */
  right: 30px; /* 텍스트 위치 조정 */
  max-width: 250px;
  margin: 0 auto;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.0);
}