/* Căn giữa toàn bộ nội dung */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  background-color: #f9f9f9;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

.column.boxes {
  width: 100%;
  max-width: 900px;
}

.highlight {
  text-align: center;
  font-size: 24px;
  color: #cc0000;
  margin-bottom: 20px;
}

.table-wrapper {
  border: 2px solid #cc0000;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #ffffff;
  width: 100%;
}

.procedure-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.procedure-table th,
.procedure-table td {
  border: 1px solid #cc0000;
  padding: 10px;
  text-align: center;
}

.procedure-table th {
  background-color: #cc0000;
  color: #ffffff;
}

.procedure-table td a {
  color: #cc0000;
  text-decoration: none;
  font-weight: bold;
}

.procedure-table td a:hover {
  color: #ffffff;
  background-color: #cc0000;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

header {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.menu-icon {
  max-width: 400px;     /* Giới hạn chiều ngang */
  height: auto;         /* Tự động tính chiều cao theo tỉ lệ */
  display: block;
  margin: 0 auto 10px;  /* Căn giữa và cách dưới 10px */
  object-fit: contain;
}

.note {
  font-size: 12px;
  color: #555;
  font-style: italic;
}

#searchInput {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box; /* Giúp width tính cả padding */
}

