/* Style cho toàn bộ trang */
body {
  font-family: Arial, sans-serif;
  background-color: #e0eafc;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

html{
  font-size: 62.5%;
}

/* Định dạng cho phần container */
.container {
  position: relative;
  margin: auto;
  width: 100vw;
  max-width: 500px; /* Đặt giới hạn chiều rộng */
  padding: 10px;
  /* background: white; Nền trắng cho nội dung */

  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center; /* Căn giữa nội dung text */
  z-index: 1; /* Nội dung nổi lên trên background */
}


/* Định dạng cho logo */
.logo {
  width: 100px; /* Kích thước logo */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Định dạng cho tiêu đề */
h1 {
  text-align: center;
  color: #1a3b5d;
  font-size: 24px;
}

/* Định dạng cho các nhãn và trường nhập liệu */
label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input {
  width: 60%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: center;
}

/* Định dạng cho nút bấm */
button {
  display: block;
  text-align: center;
  margin: auto;
  padding: 10px;
  background-color: #e683b3;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background-color: #c1377a;
}

/* Định dạng cho bảng kết quả */
.results {
  width: 90%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1.4em;
  margin: 10px auto;
}


.results th,
.results td {
  border: 1px solid #ccc;
  padding: 10px; */
}

.results th {
  background-color: rgb(66, 118, 196);
  color: white;
  }

.results tr:nth-child(even) {
  background-color: #f9f9f9;
}

.results tr:nth-child(odd) {
  background-color: #ffffff;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.contact-icons a {
  text-decoration: none;
  color: white;
  font-size: 40px;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* Màu sắc theo nền tảng */
.contact-zalo {
  background-color: #007AFF;
}
.contact-facebook {
  background-color: #1877F2;
}
.contact-messenger {
  background-color: #00B2FF;
}

/* Google form */
#google-form {
  display: none; /* Ẩn Google Form ban đầu */
  margin-top: 20px;
}
