#status {  
    border:  1px solid rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.35);
}
#note-header {
  font-size: 1.2rem;
  margin-top: 0;
  padding: 0.4rem 0.6rem;
  background-color: rgba(255, 255, 0, 0.25); /* light yellow wash */
  border-left: 4px solid #f1c40f;            /* golden accent */
  font-weight: 600;
}
/* Table styling */
/* Table styling */
.trip-status {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.trip-status th, .trip-status td {
  border: 1px solid #ccc;
  padding: 0.6rem 0.8rem;
  text-align: left;
}

.trip-status th {
  background-color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.trip-status tbody {
  line-height: 1.3;
}

.trip-status .fancy {
  font-size: 1.1rem;
  font-style: italic;
}

/* Trip buttons layout */
.trip-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trip-button img {
  width: 200px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trip-button img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}