body {
  font-family: sans-serif;
  background: #121212;
  color: #91D7EC;
  margin: 0;
  padding: 0;
}

header {
  background: #0095D9;
  padding: 1rem;
  text-align: center;
}

header h1 {
  color: #91D7EC;
  margin: 0;
}

.table-container {
  padding: 1rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1e1e1e;
}

th, td {
  border: 1px solid #2a2a2a;
  padding: 10px;
  text-align: left;
  font-size: 0.9rem;
  color: #91D7EC;
}

th {
  background-color: #0095D9;
}

tr:nth-child(even) {
  background-color: #181818;
}

.operator-logo {
  max-height: 28px;
  filter: drop-shadow(0 0 2px #000);
}

.livery-image {
  max-height: 40px;
  border-radius: 4px;
  box-shadow: 0 0 3px #000;
  display: block;
}

/* Search input style */
#search-input {
  background-color: #1e1e1e;       /* match table bg */
  border: 1px solid #0095D9;       /* blue border like header */
  color: #91D7EC;                  /* same text color */
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  width: 300px;
  max-width: 90vw;
  box-shadow: 0 0 5px #0095D9aa;
  transition: box-shadow 0.3s ease;
}

#search-input::placeholder {
  color: #4a8bbf;                  /* lighter blue for placeholder */
}

#search-input:focus {
  outline: none;
  box-shadow: 0 0 10px #00bfffcc;
  border-color: #00bfff;
}


/* Status badge styles */
.status {
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
  color: #000;
}

.status-in {
  background-color: #80EF80;
}

.status-reserve {
  background-color: #FFC067;
}

.status-withdrawn {
  background-color: #FF746C;
}

.status-training {
  background-color: #FFEE8C;
}