body {
  font-family: "Segoe UI", sans-serif;
  background: #121212;
  color: #fff;
  padding: 30px;
}
h1 {
  text-align: center;
  color: #00bcd4;
  margin-bottom: 40px;
}
.proxy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.proxy-card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  width: 500px;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.left, .right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.left {
  max-width: 100px; /* Thu nhỏ chiều rộng */
  justify-content: center;
  align-items: center;
}
.left img {
  width: auto;
  height: 100%;
  max-height: 120px; /* Thu nhỏ chiều cao */
  border-radius: 8px;
  border: 2px solid #00bcd4;
  object-fit: contain;
  display: block;
}
.right {
  justify-content: space-between;
}
.proxy-info {
  font-size: 15px;
  word-break: break-word;
}
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #00bcd4;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}
.btn:hover {
  background-color: #0097a7;
}