/* Simple custom styles */
body { background:#f7f7fb; }
.navbar-brand { font-weight:700; }
.card { border:0; box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.table thead th { white-space: nowrap; }
.badge-seat { font-size: .9rem; }

/* Seat map */
.seat-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.seat-box{
  width:120px;
  min-height:70px;
  border-radius:10px;
  padding:8px;
  border:1px solid #bdbdbd; /* gray border */
  background:#ffffff; /* white */
}
.seat-taken{
  background:#87ceeb; /* sky blue */
  border-color:#6fbfda;
}
.seat-label{
  font-weight:700;
  font-size:14px;
  line-height:1.1;
}
.seat-name{
  margin-top:4px;
  font-size:12px;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
