body {
  font-family: "Tahoma", sans-serif;
  margin: 20px;
  background: #fafafa;
  color: #222;
}

h1, h2 {
  text-align: center;
  margin: 20px 0;
}

.seatmap-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

#seatMap {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Bars */
.bars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px auto;
  max-width: 700px;
}

.bar {
  margin: 6px 0;
  padding: 6px 12px;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Table */
#districtTable {
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

#districtTable th, 
#districtTable td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: center;
}

#districtTable th {
  background: #0074d9;
  color: white;
  font-weight: bold;
}

#districtTable tr:nth-child(even) {
  background: #f9f9f9;
}

#districtTable td {
  font-size: 13px;
}

#districtTable td span.votes {
  display: block;
  font-size: 12px;
  color: #555;
}
.seat {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: transform 0.2s;
}

.seat:hover {
  transform: scale(1.4);
  border: 1px solid #000;
}

/* รายละเอียดเขต */
#district-info {
  margin-top: 20px;
  text-align: left;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#bars {
    display: flex;
    width: 100%;
}
