#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

h1 {
  text-align: center;
}

#textInput {
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #ccc;
  width: 90%;
}

#button1 {
	background-color: transparent;
	border-color: transparent;
	font-size: 24px;
	position: absolute; /* cho phép định vị tuyệt đối */
	top: 10px; /* cách đỉnh header 10px */
	right: 10px; /* cách bên phải header 10px */
}

#loading-overlay {
  position: fixed; /* Giữ hiệu ứng ở trên cùng */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Lớp phủ mờ */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Đảm bảo lớp phủ ở trên cùng */
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 5px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff; /* Màu của vòng xoáy */
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0.8, 0.8, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}