body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 40px 0;
}

@media (min-aspect-ratio: 4/3) {
  /* Tỷ lệ ngang: hiển thị 2 hình 2 bên */
  body {
    background-image: url("/static/bg1.jpg"), url("/static/bg2.jpg");
    background-size: 50% 100%, 50% 100%;
    background-position: left center, right center;
  }
}

@media (max-aspect-ratio: 4/3) {
  /* Tỷ lệ dọc: chỉ hiện 1 hình */
  body {
    background-image: url("/static/bg1.jpg");
    background-size: cover;
    background-position: center center;
  }
}

.container {
  background-color: #a9a9a9;
  width: 330px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

h2 {
  text-align: center;
  color: cyan;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.section {
  margin-bottom: 15px;
}

.sub-title {
  text-align: center;
  font-weight: bold;
  margin-top: 2px;
  font-size: 20px;
  animation: rainbow 6s linear infinite reverse; /* Thêm reverse để chạy ngược */
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes rainbow {
  0% { background-position: 0% }
  100% { background-position: 400% }
}


label {
  font-weight: bold;
}

input[type="password"], input[type="text"] {
  width: 315px;
  padding: 8px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
}


button {
  flex: 1;
  padding: 10px;
  font-weight: bold;
  border: none;
  background-color: #4CAF50;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:disabled {
  background-color: #888;
}

.stop-button {
  background-color: #f44336;
}

.stop-button:hover {
  background-color: #d32f2f;
}

.status-label {
  margin-top: 10px;
  font-weight: bold;
}

.green { color: green; }
.red { color: red; }
.cyan { color: cyan; }

.infomation {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cmd-box {
  height: 195px;
  overflow-y: auto;
  overflow-x: auto; /* Thêm dòng này để có thanh cuộn ngang */
  background-color: #000;
  color: #fff;
  padding: 5px;
  font-family: monospace;
  border: 1px solid #ccc;
  white-space: nowrap; /* Không xuống dòng tự động */
}

.btc-box {
  height: 85px;
  overflow-y: auto;
  overflow-x: auto; /* Thêm dòng này để có thanh cuộn ngang */
  background-color: #fff;  /* Nền trắng */
  color: #000;             /* Chữ đen */
  padding: 5px;
  font-family: monospace;
  border: 1px solid #ccc;
  white-space: nowrap; /* Không xuống dòng tự động */
}

.error { color: red; }
.btc { color: orange; }
.normal { color: skyblue; }
.phrase { color: white; }
.found {
  color: limegreen;
  font-weight: bold;
}

.section.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.link-icon {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  gap: 4px;
}

.link-icon img {
  width: 16px;
  height: 16px;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 285px;
  padding-right: 35px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
}

