#ctb-icon-modal {
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    top: 20%;
    left: 40%;
    width: 500px;
    height: 200px;
    display: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.ctb-icon-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.ctb-icon-modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    position: relative;
}
.ctb-icon-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.ctb-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.ctb-icon-tile {
    cursor: pointer;
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    transition: background 0.2s ease;
}
.ctb-icon-tile i {
    pointer-events: none;
}
.ctb-icon-tile:hover {
    background: #f0f0f0;
}

.ctb-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
  }

  .ctb-search {
    display: block;
  }

  .ctb-booking-form.ctb-horizontal .ctb-form-row {
    flex: 1 1 30%;
  }

  @media screen and (max-width: 767px) {
  .ctb-booking-form.ctb-horizontal .ctb-form-row {
    flex: 1 1 100% !important;
    max-width: 100%;
  }
}
  .ctb-booking-form.ctb-full .ctb-form-row {
    flex: 1 1 45%;
  }
  .ctb-booking-form.ctb-airport .ctb-form-row {
    flex: 1 1 45%;
  }
  .ctb-booking-form .ctb-form-row.ctb-full-width {
        flex: 1 1 100%;
  }
  .ctb-form-row {
    display: flex;
    flex-direction: column;
  }
  .ctb-form-row label, .ctb-form-label {
    font-weight: 600;
    margin-bottom: 4px;
  }
  .ctb-form-row input,
  .ctb-form-row select {
    padding: 8px;
    font-size: 1em;
  }
  .ctb-search-button {
    background-color: #1eb58f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: auto;
    cursor: pointer;
  }
  .ctb-inline-field {
    display: flex;
    align-items: left;
    gap: 4px;
    flex-wrap: nowrap;
}

.ctb-inline-field .ctb-label, .form-label {
    font-weight: 600;
    min-width: 160px;
    margin: 0;
}

.ctb-radio-options {
    background-color: white;
    border: 1px solid #626262;
    border-radius: 3px;
    padding: 10px;
}

.ctb-radio-options label {
    margin: 0;
    font-weight: normal;
    font-size: 1em;
    display: flex;
    align-items: left;
    gap: 6px;
}

.form-check-label{
    padding-top: 4px;
}

.ctb-vehicle-results {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}
.ctb-vehicle-card {
    flex: 1 1 300px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #fff;
}
.ctb-vehicle-card img {
    width: 100%;
    height: auto;
}
.ctb-vehicle-details {
    padding: 1rem;
}
.ctb-price {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.ctb-book-button {
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.ctb-search-results {
  padding: 2rem 0;
}

.ctb-results-list {
  display: block;
  flex-wrap: wrap;
  gap: 24px;
}

.ctb-vehicle-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  width: 100%;
  max-width: 350px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ctb-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ctb-card-header h3 {
  font-size: 1.2em;
  margin: 0;
}

.ctb-price {
  font-size: 1.3em;
  font-weight: bold;
  color: #1eb58f;
}

.ctb-description {
  font-size: 0.95em;
  margin: 0.5rem 0;
}

.ctb-specs {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.ctb-specs li {
  font-size: 0.9em;
  margin-bottom: 4px;
}

.ctb-book-button {
  background: #1eb58f;
  color: #fff;
  text-align: center;
  border: none;
  padding: 10px 16px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.ctb-feature-list, .ctb-feature-list li i, .custom-theme-accent a {
    color: #1EB58F; /* your theme accent */
}

