/* Launch Card Container */
.launch-card {
  background: #121419;
  margin: 15px 0;
  padding: 15px;
  border: 1px solid #222a36;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Title Bar */
.launch-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #1d2532;
  margin-bottom: 10px;
}

.launch-name {
  font-size: 20px;
  color: #A31419;
}

.launch-type {
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
}

/* Grid Layout */
.launch-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.4fr 0.4fr 1.5fr 0.8fr; /* Smaller for col 3 & 4 */
  gap: 10px;
  border-left: 1px solid #1d2532;
}

.launch-col {
  padding: 0 3px;
  border-right: 1px solid #1d2532;
}

.launch-col p {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 10px;
}
.launch-col:last-child {
  border-right: none;
}

/* Heading for each column */
.launch-col h4 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  color: rgb(126, 160, 196);
  border-bottom: 1px solid #1d2532;
  padding-bottom: 3px;
}

/* Label & Value Styling */
.label {
  font-weight: bold;
  color: #ffd369;
  font-size: 14px;
}

.value {
  color: #fff;
  font-size: 16px;
}

/* Time Box Styling */
.time-box {
  display: inline-block;
  padding: 3px 8px;
  margin: 3px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
  font-size: 13px;
  text-align: center;
}

/* Amenities as list */
.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities li {
  margin: 3px 0;
  font-size: 16px;
}

/* Contact links */
.col5-contact a {
  color: #0077cc;
  text-decoration: none;
}

.col5-contact a:hover {
  text-decoration: underline;
}

/* Book Now Button */
.btn-book {
  display: inline-block;
  padding: 6px 12px;
  margin-top: 6px;
  background: #d9534f;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-book:hover {
  background: #c9302c;
}

/* Search Bar Container */
.gobd-search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  background: #0E1E2D;
  border-radius: 8px;
}

/* Dropdown Styling */
.gobd-search-bar select {
  background: rgb(13, 34, 54);
  color: #fff; /* Text color */
  padding: 6px 10px;
  border: 1px solid #3a78c2;
  border-radius: 4px;
  font-size: 14px;
  appearance: none; /* Remove default arrow styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
}

/* Custom Arrow for Dropdown */
.gobd-search-bar select::-ms-expand {
  display: none; /* Remove default arrow for IE */
}

.gobd-search-bar select:focus {
  border-color: #0077cc;
  box-shadow: 0 0 4px rgba(0, 119, 204, 0.5);
}

/* Search Button */
.gobd-search-bar button {
  background: #d9534f;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.gobd-search-bar button:hover {
  background: #c9302c;
}
