* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  min-height: 100vh;
  background-color: rgb(127, 128, 127);
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgb(216, 216, 216);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.3);
  color: #333;
  z-index: 10;
}

.buslist {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  padding: 30px 20px 20px;
}

.bus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  background-color: rgb(216, 216, 216);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.pill-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.number {
  display: inline-block;
  font-size: 4rem;
  font-weight: bold;
  color: #333;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.full {
  display: inline-block;
  font-size:4rem;
  font-weight: 500;
  color: #333;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.time-group {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: auto;
}

.time {
  display: inline-flex;
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}