/* ===== BASIC STYLES ===== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(to bottom right, #f9fdff, #ffffff); /* Light blue gradient */
  margin: 0;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 360px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.15); /* Blue shadow */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.container:hover {
  transform: scale(1.01);
}

/* ===== TABLE STYLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

td {
  border-bottom: 1px solid #d6eaf8; /* Light blue border */
  padding: 10px 12px;
}

tr:last-child td {
  border-bottom: none;
}

/* Route header row */
.bptb {
  background: #e8f4fd; /* Light blue */
  color: #2980b9; /* Dark blue */
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 10px;
  border-bottom: 2px solid #3498db; /* accent bottom border */
}

/* Boarding points */
.bpt {
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  text-align: left;
}

/* Timing column */
.time, .time b {
  text-align: right;
  color: #3498db; /* Light blue */
  font-weight: bold;
  padding: 8px 12px;
}



/* ===== BACK BUTTON ===== */
.back-btn {

  background: linear-gradient(to right, #3498db, #5dade2);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(52, 152, 219, 0.25);
  margin: 15px auto 0;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  display: block;      /* Make button behave as a block element */
  width: fit-content;  /* Shrink width to content */
  margin-left: auto;
  margin-right: auto;  /* Center horizontally */
}


.back-btn:hover {
  background: linear-gradient(to right, #2980b9, #3498db); /* Darker blue */
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
  body {
    padding: 25px;
  }
  table {
    font-size: 14px;
  }
  .bptb {
    font-size: 15px;
  }
}
