
  body {
    /* font-family: 'Segoe UI', Arial, sans-serif; */
    background: linear-gradient(to bottom, #dff1ff, #ffffff);
    margin: 0;
    /* padding: 30px; */
  }

  .booking-wrapper {
    max-width: 800px;
    /* margin: 50px auto; */
    margin: 50px 0 50px 50px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  h2 {
    text-align: center;
    font-size: 22px;
    color: #0077b6;
    margin-bottom: 20px;
  }

  .tab-group {
    display: flex;
    border-bottom: 2px solid #69c4dd;
    margin-bottom: 20px;
  }

  .tab-group p {
    flex: 1;
    padding: 10px;
    background: #f8f8f8;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    transition: background 0.3s;
    text-align: center;
  }

  .tab-group p.active {
    background: #3c3e71;
    color: white;
    border-radius: 5px 5px 0 0;
  }

  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  .form-group {
    flex: 1;
    min-width: 150px;
    position: relative;
  }

  .form-group label {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
    display: block;
  }

  .input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    padding: 0 10px;
  }

  .input-wrapper input,
  .input-wrapper select {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 5px;
    font-size: 14px;
  }

  .suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
    display: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .suggest-item {
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }

  .suggest-item:hover,
  .suggest-item.active {
    background-color: #bde4ff;
  }

  .passenger-row {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
  }

  .passenger-type {
    flex: 1;
    min-width: 130px;
    text-align: center;
  }

  .counter {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fefefe;
    padding: 5px;
  }

  .counter button {
    padding: 5px 12px;
    font-size: 18px;
    background: none;
    border: none;
    color: #00b386;
    cursor: pointer;
  }

  .counter span {
    padding: 0 10px;
    font-size: 16px;
    min-width: 18px;
  }

  .options {
    margin: 15px 0 10px;
    font-weight: bold;
    color: #3c3e71;
    cursor: pointer;
  }

  #more-options-content select,
  #more-options-content input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }

  .search-button {
    text-align: right;
    margin-top: 20px;
  }

  .search-button button {
    background: #ed1b24;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .search-button button:hover {
    background: #c0141a;
  }

  .hidden {
    display: none;
  }

  /* Calendar Styles */
  .calendar-wrapper {
    max-width: 700px;
    margin: 20px auto;
    position: relative;
  }

  .nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .nav-buttons button {
    background: #00a699;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }

  .calendar-container {
    display: none;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 30px;
    margin-top: 10px;
  }

  .calendar {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    width: 360px;
    flex-shrink: 0;
  }

  .calendar-header h3 {
    margin: 0;
    font-size: 18px;
    text-align: center;
  }

  .weekdays,
  .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }

  .weekdays div {
    font-weight: bold;
    color: #555;
    padding: 6px 0;
  }

  .days div {
    padding: 8px 0;
    margin: 2px 0;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    border-radius: 6px;
  }

  .days div.disabled {
    color: #ccc;
    cursor: not-allowed;
  }

  .days div.selected {
    border: 2px solid #00a699;
    padding: 6px 0;
  }

  .price {
    font-size: 12px;
    color: #2fbf71;
    display: block;
  }

  .high-price {
    color: #d9534f;
  }

  .holiday {
    color: red;
  }

  .note {
    text-align: center;
    margin-top: 20px;
    color: red;
    font-size: 12px;
    display: none;
  }

  @media (max-width: 600px) {

    .form-row,
    .passenger-row {
      flex-direction: column;
    }

    .form-group,
    .passenger-type {
      min-width: 100%;
    }
  }

  /* ---------- MULTI-CITY BUTTONS ---------- */
  .segment-row {
    position: relative;
    /* needed for absolute button */
    padding-right: 50px;
    /* space for the X button */
    margin-bottom: 20px;
  }

  .segment-controls {
    position: absolute;
    top: 28px;
    /* align with the date input */
    right: 10px;
    transform: translateY(-50%);
  }

  .remove-segment {
    background: #e63946;
    /* red */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
  }

  .remove-segment:hover {
    background: #d00000;
  }

  .add-segment-btn {
    display: block;
    width: 23%;
    margin-top: 15px;
    background: #2a9d8f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
  }

  .add-segment-btn:hover {
    background: #21867a;
  }

