body {
  font-family: monospace;
  text-align: center;
  padding: 30px;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: powderblue;
  touch-action: manipulation;
}

::-webkit-scrollbar {
  width: 0px; /* Độ rộng của thanh cuộn */
  height: 0px; /* Độ cao của thanh cuộn ngang */
}

body {
  transition: opacity 1s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.copyright {
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  pointer-events: all;
}

.container {
  background-color: #fff;
  border-radius: 25px;
  padding: 60px;
  width: 600px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
/* -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);*/
  background: rgba(0, 0, 0, .1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}

.verified-invisible {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  pointer-events: all;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.verified-visible {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}
.name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  color: #333;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.description {
  color: #666;
  margin-top: 15px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.button,
.sub-button,
.sub-button-child {
  display: block;
  background-color: #3498db;
  color: white;
  border: none;
  padding: 20px;
  margin: 20px 0;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.button:hover,
.sub-button:hover {
  background-color: #2980b9;
  transform: translateY(-6px);
}

.sub-button {
  background-color: #2ecc71;
  margin: 15px 0;
}

.sub-button-child {
  background-color: #aa730e;
  margin: 15px 0;
}

.sub-button:hover {
  background-color: #27ae60;
}

.footer {
  font-size: 14px;
  color: #988;
  margin-top: 5px;
  font-style: italic;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.summary {
  font-size: 14px;
  color: #988;
  margin-top: 5px;
  font-style: italic;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.footer a {
  text-decoration: none;
  color: inherit;
}

.icon-app {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.icon-app {
  left: 15px;
}

.button img,
.sub-button img,
.sub-button-child img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-touch-callout: none;
}

[data-tooltip] {
  font-family: monospace 'Signika';
  font-size: 13px;
  position: relative;
  cursor: pointer;
}

[data-tooltip]:before,
[data-tooltip]:after {
  line-height: 1;
  font-size: .9em;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  display: none;
  opacity: 0;
}

[data-tooltip]:before {
  content: "";
  border: 5px solid transparent;
  z-index: 10;
}

[data-tooltip]:after {
  content: attr(data-tooltip);
  text-align: left;
  min-width: 3em;
  max-width: 40em;
  width: 300px;
  height: auto;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px;
  border-radius: 15px;
  background: gray;
  color: white;
  z-index: 60;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: block;
  opacity: 1;
}

[data-tooltip][data-flow="top"]:before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}

[data-tooltip][data-flow="top"]:after {
  bottom: calc(100% + 5px);
}

[data-tooltip][data-flow="top"]:before,
[data-tooltip][data-flow="top"]:after {
  left: 50%;
  -webkit-transform: translate(-50%, -4px);
  transform: translate(-50%, -4px);
}

[data-tooltip][data-flow="bottom"]:before {
  top: 60%;
  border-top-width: 0;
  border-bottom-color: gray;
  margin-left: 9px;
}

[data-tooltip][data-flow="bottom"]:after {
  top: calc(60% + 5px);
}

[data-tooltip][data-flow="bottom"]:before,
[data-tooltip][data-flow="bottom"]:after {
  left: 70%;
  -webkit-transform: translate(-70%, 8px);
  transform: translate(-70%, 8px);
}

[data-tooltip][data-flow="left"]:before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #ffffff;
  left: calc(0em - 5px);
  -webkit-transform: translate(-8px, -50%);
  transform: translate(-8px, -50%);
}

[data-tooltip][data-flow="left"]:after {
  top: 50%;
  right: calc(100% + 5px);
  -webkit-transform: translate(-8px, -50%);
  transform: translate(-8px, -50%);
}

[data-tooltip][data-flow="right"]:before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #ffffff;
  right: calc(0em - 5px);
  -webkit-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}

[data-tooltip][data-flow="right"]:after {
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}

[data-tooltip=""]::after,
[data-tooltip=""]::before {
  display: none !important;
}

.verified {
  text-align: center;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
    width: 100%;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }

  .name {
    font-size: 18px;
  }

  .description {
    font-size: 16px;
  }

  .button,
  .sub-button,
  .sub-button-child {
    font-size: 15px;
    padding: 15px;
    height: 50px;
  }

  .icon-app {
    height: 40px;
    width: 40px;
  }

  .button img,
  .sub-button img,
  .sub-button-child img {
    width: 35px;
    height: 35px;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: white;
  border: 1px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 280px;
  height: 130px;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color:rgba(0, 0, 0, 0.404);
}

#button {
  display: none;
  margin-top: 10px;
}
.page-overlay {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, .1);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
  color: #000000;
}
.button-hide{
  width: 200px;
  height: 40px;
  background: rgba(0, 0, 0, .1);
  color: #000000;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: fixed;
    bottom: 40px; /* Cách đáy 40px */
    left: 50%; /* Đặt nút ở giữa theo chiều ngang */
    transform: translateX(-50%); /* Dịch chuyển nút để căn giữa hoàn hảo */
    padding: 10px 20px; /* Khoảng cách nội dung */
    font-size: 16px; /* Cỡ chữ */
    border: 2px solid #000000;
    cursor: pointer; /* Hiệu ứng con trỏ */
    z-index: 1000; /* Hiển thị trên các thành phần khác */
}
.hide-content{
color: #000000;
text-align: left;
font-size: 20px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
position: fixed;
top: 50px; /* Căn phía trên */
left: 0; /* Căn bên trái */
padding: 10px 20px; /* Khoảng cách nội dung */
border-bottom-right-radius: 10px; /* Bo góc phía dưới bên phải */
}
.update-time{
  color: #000000;
  text-align: right;
  font-size: 20px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.0); /* Màu nền trong suốt */
  padding: 10px; /* Khoảng cách nội dung */
  font-size: 14px; /* Cỡ chữ */
  border-radius: 5px 0 0 0; /* Bo góc phía trên bên trái */
  z-index: 1000; /* Đảm bảo hiển thị trên các thành phần khác */
  }