/* global css */
.abps-center {
  display: flex;
  justify-content: center !important;
  align-items: center;
}
/* Main search form */
.apbs-search-form {
  background: #f7f7f7;
  padding: 20px;
  /* margin-bottom: 30px; */
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.form-row {
  display: block !important;
}
.apbs-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  justify-content: space-between;
}
li.apbs-feature-item img {
  margin-right: 6px;
}
li.apbs-feature-item {
  font-weight: 400;
  font-size: 16px;
  color: black;
}
.apbs-cars-field {
  max-width: 100% !important;
}
.rating-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0px 0;
  margin-top: -5px;
  /* justify-content: space-around; */
}
.apbs-tag {
  background: linear-gradient(180deg, #fd8204 0%, #fcbb2f 133.33%);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  display: none;
}
.apbs-tag-info {
  background: linear-gradient(180deg, #001c52 0%, #003fb8 133.33%);

  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}
.stars {
  display: flex;
  gap: 2px;
}
.star {
  font-size: 18px;
  transition: all 0.2s ease;
}

.star.filled {
  color: #ffc107; /* Gold color for filled stars */
}

.star.half {
  background: linear-gradient(90deg, #ffc107 50%, #e0e0e0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ffc107; /* Fallback for browsers that don't support background-clip */
}

.star.empty {
  color: #e0e0e0; /* Light gray for empty stars */
}

.rating-text {
  font-size: 14px;
  color: #666;
}

.highlight {
  color: #ffc107;
  font-weight: bold;
}

.no-rating {
  color: #999;
  font-style: italic;
}

/* Hover effects */
.rating-container:hover .star.filled,
.rating-container:hover .star.half {
  transform: scale(1.1);
}
.apbs-form-field {
  flex: 1;
  min-width: 90px;
  max-width: fit-content;
}

/* Service Rating Styling */

.apbs-form-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}
.apbs-promo-field img {
    padding-left: 10px;
    width: 100%;
    max-width: 30px !important;
}
.apbs-form-field input,
.apbs-form-field select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
}
input#apbs-promo-code {
    padding-left: 10px !important;
}
.apbs-search-button {
  background: #009b89;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.apbs-search-button:hover {
  background: linear-gradient(135deg, #08897a 0%, #009b89 100%);
}

/* Results header */
.apbs-results-header {
  text-align: center;
  margin-bottom: 20px;
}

.apbs-results-header h3 {
  color: #333;
  margin-bottom: 5px;
}

.apbs-results-header p {
  color: #666;
  font-size: 14px;
}

/* Service grid */
.apbs-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.apbs-service-card {
  border: 2px solid #1a3c58;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.apbs-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.apbs-service-card.recommended .apbs-service-header {
  width: calc(100% - 40px);
}
.apbs-recommended-ribbon {
  position: absolute;
  top: 20px;
  width: 130px;
  right: -30px;
  text-align: center;
  background: rgba(0, 28, 82, 1);
  color: #333;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
}

.apbs-service-header {
  margin-bottom: 15px;
}

.apbs-service-header h4 {
  margin: 0;
  color: #1a3c58;
  font-size: 18px;
}

.apbs-service-type {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.apbs-service-rating {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  color: rgba(0, 28, 82, 1);
  font-size: 18px;
}
.apbs-service-rating span {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin-left: 5px;
}
.apbs-service-image {
  margin-bottom: 30px;
  text-align: center;
  min-height: 100px;

  background: rgba(246, 135, 18, 1);
}

.apbs-service-image img {
  max-width: 180px !important;
  height: auto;

  border-radius: 0px;
}

.apbs-service-features {
  margin: 15px 0;
}
.safer-parking-badge {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
  text-transform: uppercase;
}
.apbs-feature img {
  width: 100px;
  position: absolute;
  top: 50%;
  right: 10px;
  border-radius: 5px !important;
  z-index: 0;
}
.apbs-feature {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
a.apbs-info-button:hover {
  background: transparent !important;
}

.apbs-feature-icon {
  margin-right: 8px;
  font-size: 16px;
}

.apbs-service-price {
  margin: 20px 0;
  text-align: center;
}

.apbs-price-amount {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.apbs-price-period {
  display: block;
  font-size: 14px;
  color: #666;
}

.apbs-service-actions {
  text-align: center;
}

.apbs-search-button {
  color: white !important;
  cursor: pointer !important;
  transition: background 0.3s !important;

  background-color: #001c52 !important;
  border-radius: 57px !important;
  border: 1px solid #0000007a !important;
  padding: 12px 35px !important;
  font-family: "Manrope", sans-serif !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
}
button.apbs-toggle-form {
  border-color: rgba(0, 28, 82, 1);
  background: rgba(0, 28, 82, 1) !important;
  color: white !important;
  border: 1px solid rgba(0, 28, 82, 1);
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  padding: 5px 10px;
  color: black;
}
button.apbs-toggle-form:hover {
  background: black !important;
  color: white !important;
}
.apbs-search-change {
  text-align: center;
  margin-bottom: 60px;
}
.apbs-no-availability {
  background: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.logo_btn-container {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 15px 0px;
}
.apbs-cancellation-cover {
  color: #28a745;
  font-size: 14px;
  text-align: left;
  padding-left: 20px;
}
button.apbs-book-button {
  color: white;
  position: relative;
  border: 0;
  overflow: hidden;
  z-index: 0;
  background-color: rgba(0, 28, 82, 1);
  color: #ffffff;
  border-radius: 0;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  width: 50%;
}

.apbs-book-button.btn-slide-fill:hover {
  background-color: rgba(0, 28, 82, 1);
}
.btn-slide-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #014073 0%);
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.btn-slide-fill:hover::before {
  transform: translateY(0);
}

.supplier-dashboard .form-group {
  margin-bottom: 20px;
}
.supplier-dashboard label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.price-tier {
  margin-bottom: 10px;
}
.parking-list li {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}
.current-images img {
  margin-right: 10px;
  max-height: 100px;
}

/* supplier-dashboard.css */

/* General Dashboard Container */
.supplier-dashboard {
  font-family: "Segoe UI", sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

/* Headings */
.supplier-dashboard h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Parking List */
.parking-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.parking-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;
}

.parking-image img {
  max-width: 120px;
  height: auto;
  border-radius: 6px;
}

/* Parking info */
.parking-list h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.status {
  font-size: 14px;
  color: #888;
  margin-left: 10px;
}

/* Actions */
.parking-actions {
  margin-top: 10px;
}

.parking-actions .button {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  background-color: #0073aa;
  color: #fff;
}

.parking-actions .button.delete {
  background-color: #dc3232;
}

/* Form Styling */
form .form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea,
.form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

textarea {
  min-height: 100px;
}

/* Checkbox */
.form-group input[type="checkbox"] {
  margin-right: 6px;
}

/* Image Preview */
.current-image {
  margin-top: 10px;
}

.current-image h4 {
  margin: 0 0 10px;
}

.remove-image {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #d00;
}

/* Submit Buttons */
form .button.primary {
  background: #28a745;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

form .button.delete {
  background-color: #dc3545;
  margin-left: 10px;
  color: #fff;
}

/* Success/Error messages */
.success,
.error {
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 5px;
}

.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.parking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.parking-card {
  width: calc(50% - 10px);
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.parking-image img {
  width: 100%;
  height: auto;
}
.parking-actions {
  margin-top: 10px;
}
.parking-actions .button {
  margin-right: 10px;
}
.pagination {
  margin-top: 20px;
}
.parking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.apbs-car-park-info {
  margin: 10px 0;
}

/* .apbs-info-button {
  background: transparent !important;
  color: #014073 !important;
  border: none;
  /* padding: 8px 16px; */
/* border-radius: 4px;
  cursor: pointer !important;
  font-weight: bold !important;
  position: relative;
} */
.apbs-car-park-info {
  text-align: center;
}
.apbs-info-button:hover {
  background: #005a87;
}

.apbs-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}

.apbs-popup-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.apbs-popup-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.apbs-popup-header h3 {
  margin: 0;
  font-size: 24px;
  margin-right: 40px;
}

.apbs-popup-close {
  background: none;
  border: none;
  font-size: 30px !important;
  cursor: pointer !important;
  color: #666 !important;
  position: absolute !important;
  top: 15px;
  right: 15px;
}

.apbs-popup-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
}

.apbs-popup-top-section {
  display: flex;
  padding: 20px;
  gap: 20px;
  border-bottom: 1px solid #eee;
}

.apbs-popup-logo {
  flex: 0 0 150px;
  text-align: center;
}

.apbs-popup-logo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 100px;
  object-fit: contain;
}

.apbs-popup-info {
  flex: 1;
}

.apbs-popup-price-section {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.apbs-popup-price {
  font-size: 28px;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 15px;
}

.apbs-popup-book {
  background: rgba(0, 28, 82, 1) !important;
  color: white !important;
  border: none;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-weight: bold !important;
  width: 100%;
}

.apbs-popup-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 0 20px;
}

.apbs-tab-button {
  background: none;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #666;
  border-bottom: 3px solid transparent;
  position: relative;
}

.apbs-tab-button.active {
  color: #007cba;
  border-bottom-color: #007cba;
}

.apbs-tab-content {
  display: none;
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.apbs-tab-content.active {
  display: block;
}

.apbs-feature-list {
  list-style: none;
  padding: 0;
}

.apbs-feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.apbs-feature-list li:before {
  content: "âœ“";
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

.apbs-content-display {
  line-height: 1.6;
}

.apbs-content-display p {
  margin-bottom: 10px;
}

.apbs-content-display ul,
.apbs-content-display ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.apbs-content-display li {
  margin-bottom: 5px;
}

.supplier-features-manager {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-section {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.feature-section h4 {
  margin-top: 0;
  color: #333;
}

.feature-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.feature-row input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.remove-feature {
  background: #dc3545 !important;
  color: white !important;
  border: none;
  padding: 8px 12px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
}

.add-feature {
  background: #28a745 !important;
  color: white !important;
  border: none !important;
  padding: 10px 15px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  margin-top: 10px !important;
}

.supplier-feature-button {
  background: #007cba !important;
  color: white !important;
  border: none;
  padding: 12px 24px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  font-size: 16px !important;
}

.editor-wrapper {
  margin-top: 10px;
}

.editor-wrapper .wp-editor-wrap {
  border: 1px solid #ddd;
  border-radius: 3px;
}

.supplier-income-dashboard {
  max-width: 1200px;
  margin: 0 auto;
}

.income-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
  border-bottom: 2px solid #007cba;
  padding-bottom: 8px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  font-weight: 500;
  color: #555;
}

.stat-value {
  font-weight: bold;
  font-size: 16px;
}

.stat-value.commission {
  color: #dc3545;
}

.stat-value.earnings {
  color: #28a745;
  font-size: 18px;
}

.recent-bookings {
  margin-top: 30px;
}

.recent-bookings h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 20px;
}

.recent-bookings-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.recent-bookings-table th,
.returns-table th {
  background: #007cba;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
}

.recent-bookings-table td {
  padding: 12px;
  border-bottom: 1px solid #e9ecef;
}

.recent-bookings-table tr:hover {
  background: #f8f9fa;
}

.earning-amount {
  color: #28a745;
  font-weight: bold;
}

.no-parkings {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 8px;
}

.no-parkings p {
  font-size: 16px;
  color: #666;
}

.no-parkings a {
  color: #007cba;
  text-decoration: none;
  font-weight: bold;
}

.no-parkings a:hover {
  text-decoration: underline;
}

.booking-dashboard table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.booking-dashboard th,
.booking-dashboard td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 12px;
}
.booking-dashboard th {
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 12px;
}
.booking-detail {
  max-width: 800px;
}
.booking-detail > div {
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
}
.booking-detail h3 {
  margin-top: 0;
  color: #333;
}
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #0073aa;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
.status-completed {
  color: #46b450;
}
.status-processing {
  color: #ffb900;
}
.status-pending {
  color: #999;
}
.status-cancelled {
  color: #dc3232;
}
.order-items-table {
  width: 100%;
  border-collapse: collapse;
}
.order-items-table th,
.order-items-table td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}
.order-items-table th {
  background-color: #f0f0f0;
}

.pricing-charts-dashboard {
  max-width: 900px;
  margin: 0 auto;
}
#toggleFormBtn {
  margin-bottom: 20px;
}
.charts-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.chart-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-left: 4px solid #0073aa;
  border-radius: 6px;
}
.chart-card h3 {
  margin-top: 0;
}
.chart-card .actions {
  margin-top: 10px;
}
.chart-card .button {
  margin-right: 10px;
}
.pricing-form .form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.pricing-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.price-box {
  display: flex;
  flex-direction: column;
}
.price-box label {
  margin-bottom: 5px;
  font-weight: 500;
}
.price-box input {
  padding: 6px;
  font-size: 14px;
}
button#pricingChartSubmitBtn {
  margin-top: 20px;
}

.grid-header {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 2px solid #ccc;
}
.grid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid-row label {
  width: 60px;
}
.grid-row input {
  flex: 1;
  padding: 6px;
}
.button.primary {
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.button.small {
  padding: 5px 10px;
  font-size: 12px;
}
.button.delete {
  background: #d63638;
  color: #fff;
}
button#toggleFormBtn:hover {
  color: white;
}

.apbs-recommendation-badge {
  /* position: absolute; */
  /* top: 15px;
  right: 15px; */
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
  padding: 5px 16px;
  border-radius: 8px 8px 0px 0px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  z-index: 10;
  animation: pulse 2s infinite;
}
.apbs-left-info {
  text-align: left;
}
.price-park-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.apbs-pricing-card {
  background: #f5f5f5;
  border-radius: 8px;
  /* padding: 40px 30px; */
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.3s ease;
  /* padding-top: 20px; */
}

.apbs-pricing-card:hover {
  transform: translateY(-5px);
}

.apbs-logo {
  width: 80px;
  height: 80px;
  background: rgba(0, 28, 82, 1);
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(59, 89, 152, 0.3);
}

.apbs-logo::before {
  content: "P";
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.apbs-plan-title {
  font-size: 48px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 300;
}
body .select2-container--default {
  min-height: 2px;
  max-height: 40px;
}

.apbs-current-price {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.apbs-original-price {
  font-size: 24px;
  color: #666;
  text-decoration: line-through;
  margin-left: 10px;
}
.apbs-park-logo img {
  max-width: 100px !important;
  border-radius: 10px !important;
}
.apbs-price-period {
  font-size: 18px;
  color: #666;
  margin-top: 5px;
}

.apbs-service-info {
  margin: 0px 0;
}

.apbs-service-title {
  font-size: 17px;
  color: #666;
  /* margin-bottom: 8px; */
  font-weight: bold;
  line-height: 20px;
  color: black;
}
.rating-badge {
  background: linear-gradient(180deg, #001c52 0%, #003fb8 100%);
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

.apbs-service-subtitle {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
}

.apbs-features {
  list-style: none;
  text-align: left;
  margin-top: 10px;
}

.apbs-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #666;
}

.apbs-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 28, 82, 1);
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apbs-feature-icon::before {
  content: "✓"; /* Unicode check mark */
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.apbs-car-park-info {
  margin: 40px 0 30px;
  padding: 0;
}

.apbs-car-park-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #666;
}

.apbs-info-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 28, 82, 1);
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apbs-info-icon::before {
  content: "i";
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
}

.apbs-book-now-btn {
  background: rgba(0, 28, 82, 1) !important;
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 12px 35px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: auto !important;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
}
#apbs-popup-overlay .apbs-book-now-btn {
  padding: 12px 15px !important;
}
.apbs-service-image {
  width: 100%; /* or fixed width like 300px */
  height: 200px; /* set the height you want */
  background-size: contain; /* or 'contain' */
  background-position: center;
  background-repeat: no-repeat;
  /* border-radius: 10px; optional */
}

.apbs-book-now-btn:hover {
  background: #2d4373;
  transform: translateY(-2px);
}

.apbs-book-now-btn:active {
  transform: translateY(0);
}

/* Animation for smooth loading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apbs-pricing-card {
  animation: fadeInUp 0.8s ease-out;
}
.apbs-car-park-item {
  padding: 0px 20px;
}
.apbs-form-with-airport {
  background: linear-gradient(154.95deg, #fd8204 47.74%, #fcbb2f 98.42%);
}

/* search form */

/* Main search wrapper */
.apbs-search-wrapper {
  /* background: #4b616c; */
  border-radius: 5px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  margin: 0 auto;
  max-width: 600px;
  opacity: 0.95;
}
.apbs-form-row label {
  color: white;
  font-size: 16px;
}
/* Header styling */
.apbs-search-form .apbs-search-header {
  /* background: #1a365d; */
  padding: 10px;
  text-align: center;
  border-top: 1px solid white;
}
.apbs-top-banner {
  padding: 10px;
}
.apbs-search-header h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}
.tablenav-pages a {
  font-size: 25px;
  padding: 10px;
  /* background: black; */
}
/* Main search form */
.apbs-search-form {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  /* padding: 30px; */
  position: relative;
  padding-top: 10px;
}
.apbs-search-header {
  text-align: center;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ffffff78;
}
.apbs-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: stretch;
  margin-bottom: 20px;
}

.apbs-form-field {
  flex: 1;
  /* min-width: 200px; */
  position: relative;
}

.apbs-time-field {
  min-width: 35%;
  flex: 0.8;
}

.apbs-submit-field {
  min-width: 30%;
  flex: 0.8;
  margin: auto;
}
.abps-feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: white;
  padding-top: 15px;
}

.abps-feature-item {
  display: flex;
  align-items: center;
  font-weight: 500;
  min-width: auto;
  justify-content: flex-start;
  width: 40%;
}

/* @media (max-width: 600px) {
    .abps-feature-item {
        justify-content: start;
        min-width: auto;
        width: 38%;
        text-align: center;
    }
} */

/* Input wrapper with icon */
.apbs-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.apbs-input-wrapper:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.apbs-input-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Field icons */
.apbs-field-icon {
  position: absolute;
  left: 12px;
  z-index: 2;
  color: #4a5568;
  pointer-events: none;
  width: 20px;
  height: 20px;
}

/* Input styling */
.apbs-input-wrapper input,
.apbs-input-wrapper select {
  width: 100% !important;
  padding: 10px 0px 10px 40px !important;
  border: none !important;
  border-radius: 25px !important;
  font-size: 16px !important;
  color: #2d3748 !important;
  background: transparent;
  outline: none;
  font-weight: 500;
}

.apbs-input-wrapper input::placeholder,
.apbs-input-wrapper select option:first-child {
  color: #718096;
  font-weight: 400;
}

/* Select specific styling */
.apbs-input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.apbs-form-field i {
  position: absolute;
  left: 10px;
  color: #1a365d;
  font-size: 20px;
}
/* Date input styling */
.apbs-input-wrapper input[type="date"] {
  color: #2d3748;
  font-weight: 500;
}

.apbs-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Search button */
.apbs-search-button {
  width: 100%;
  padding: 15px 20px;
  background: #009b89;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.apbs-search-button:hover {
  background: linear-gradient(180deg, #001C52 0%, #003FB8 133.33%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.apbs-search-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form footer */
.apbs-form-footer {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.apbs-support-text {
  color: white;
  font-size: 18px;
  font-weight: 900;
  width: 40%;
}
.apbs-support-text span {
  display: inline-block;
}

.apbs-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apbs-feefo-logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.feefo-text {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.feefo-trusted {
  font-size: 14px;
  color: #ffd700;
  font-weight: 600;
}

.apbs-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 16px;
}

.star.half {
  position: relative;
  color: #e2e8f0;
}

.star.half:before {
  content: "â˜…";
  position: absolute;
  left: 0;
  color: #ffd700;
  width: 50%;
  overflow: hidden;
}

.apbs-rating-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #4a5568;
}

.rating-label {
  font-weight: 500;
  margin-bottom: 2px;
}

.rating-count {
  font-weight: 400;
}

/* Focus states for accessibility */
.apbs-input-wrapper input:focus,
.apbs-input-wrapper select:focus {
  outline: none;
}

/* Error states */
.apbs-input-wrapper.error {
  box-shadow: 0 0 0 2px #e53e3e;
}

.apbs-input-wrapper input.error,
.apbs-input-wrapper select.error {
  border-color: #e53e3e;
}

/* Animation for smooth transitions */
.apbs-input-wrapper,
.apbs-search-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar for select options */
select::-webkit-scrollbar {
  width: 8px;
}

select::-webkit-scrollbar-track {
  background: #f1f1f1;
}

select::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

select::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
select#apbs-airport {
  height: 45px;
  padding-top: 10px;
  padding-left: 30px !important;
}
.apbs-airport-field,
.apbs-promo-field {
  min-width: 200px;
  min-width: 100%;
}
.apbs-date-field {
  min-width: 53%;
  max-width: 54%;
}
.apbs-rating img {
  width: 200px;
  /* height: 200px; */
}
.trust-pilot img {
  max-width: 100px !important;
  border-radius: 5px !important;
}
.logo-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 30%;
}
form.woocommerce-checkout {
  position: relative !important;
  overflow: hidden !important;
}
div#wc-stripe-express-checkout-element {
  position: absolute;
  z-index: 1;
  right: 5%;
  bottom: 110px;
  max-width: 100%;
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.woocommerce-terms-and-conditions-wrapper {
  padding-bottom: 160px !important;
}
.pac-checkout-section {
  border-radius: 5px;
  background: #f9f9f9;
  border: 2px dashed #1e73be;
  padding: 25px;
}
/* form.woocommerce-checkout input,
form.woocommerce-checkout select {
  width: 100%;
} */
span.optional {
  display: none;
}
form.checkout.woocommerce-checkout.row .col-lg-6 {
  position: inherit;
}
#wc-stripe-express-checkout-button-separator {
  display: none !important;
}

.manage-booking-container {
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.apbs-popup-tabs {
  /* padding-bottom: 20px; */
  padding-left: 0px;
  min-height: 40px;
}

.search-method {
  width: 48%;
}

.search-form-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.booking-search-section {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

.booking-search-section h2 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}

.search-method {
  background: white;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.search-method:hover {
  border-color: #173679;
}

.search-method h3 {
  color: #173679;
  margin-bottom: 15px;
  font-size: 18px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #173679;
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.search-btn {
  background: #173679 !important;
  color: white !important;
  padding: 12px 30px !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: bold !important;
  transition: background 0.3s ease !important;
}

.search-btn:hover {
  background: #005a87 !important;
  color: white;
}

.login-section {
  text-align: center;
  padding: 20px;
  background: #e7f3ff;
  border-radius: 8px;
  margin-bottom: 20px;
}

.login-btn {
  background: #28a745;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: #218838;
  text-decoration: none;
  color: white;
}

#wc-stripe-express-checkout-element .StripeElement {
  width: 100%;
  max-width: 250px;
  right: 0;
}
.search-results {
  margin-top: 30px;
}

.booking-result {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* === APBS Filter Form === */
.abps-returns-filter-form {
  margin-bottom: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 5px;
}

.abps-form-row {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.abps-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.abps-form-group input[type="date"],
.abps-form-group select {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  min-width: 160px;
}
.apbs-product-type {
  color: red;
  font-weight: 500;
  font-size: 16px;
}
.apbs-product-type p {
  color: black;
  font-size: 12px;
}
div#overview-tab {
  padding-bottom: 50px;
}
.abps-form-group .button {
  padding: 10px 18px;
  border-radius: 3px;
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

form.abps-form-group.abps-returns-filter-form {
  padding: 0px 15px;
  margin: 0px;
}
.abps-form-group .button:hover {
  background: #005f8d;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .abps-form-row {
    flex-direction: column;
    align-items: stretch;
  }
  .apbs-search-header h2 {
    color: #26403;
    font-size: 16px !important;
  }
  .abps-form-group input[type="date"],
  .abps-form-group select,
  .abps-form-group .button {
    width: 100%;
  }
}

.booking-result h3 {
  color: #173679;
  margin-bottom: 15px;
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.info-item {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
}

.info-item strong {
  color: #333;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
  border: 1px solid #f5c6cb;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
  border: 1px solid #c3e6cb;
}

.status-completed {
  color: #28a745;
  font-weight: bold;
}

.status-processing {
  color: #173679;
  font-weight: bold;
}

.status-pending {
  color: #ffc107;
  font-weight: bold;
}

.status-cancelled {
  color: #dc3545;
  font-weight: bold;
}

.vehicle-details,
.parking-details,
.booking-dates {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0;
}

.vehicle-details h4,
.parking-details h4,
.booking-dates h4 {
  margin-top: 0;
  color: #333;
}
.form-group input[type="checkbox"] {
  width: auto;
  /* margin-right: 10px; */
}
.features-select {
  padding-bottom: 30px;
}
.ccp-checkout-header {
  text-align: center;
  padding: 15px 0;
  /* background: #f9f9f9; */
  border-radius: 8px;
}

.ccp-heading {
  margin-top: 10px;
  font-size: 36px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.25px;
  line-height: 48px;
}

.ccp-subheading {
  font-family: Poppins, sans-serif;
  color: #060606;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.25px;
}
ul.ccp-booking-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: black;
}
.ccp-booking-info {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
}

.ccp-booking-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-form-coupon-toggle {
  display: none;
}
.ccp-booking-list li {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
  padding: 0px 0;
  font-size: 13px;
  gap: 20px;
}
.product-name,
.product-total,
.cart-product-label,
.ccp-label {
  font-weight: 600;
  color: #222;
  flex: 1;
}

.ccp-value {
  color: #1a4d8f;
  font-weight: 500;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}
.apbs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .apbs-title-price {
    margin-bottom: 4px;
} */

.apbs-service-title {
    font-size: 20px;
    font-weight: 800;
}

.apbs-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.apbs-meta-row {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}

.apbs-product-type {
    font-weight: 500;
    color: #333;
}
.apbs-top-section {
    padding: 15px 12px 15px 12px;
}

@media (max-width: 768px) {
  .manage-booking-container {
    padding: 10px;
  }
  .ccp-heading {
    font-size: 20px;
    line-height: 24px;
  }
  .ccp-subheading {
    font-size: 14px;
  }
  .search-method {
    width: 100%;
  }

  .booking-search-section {
    padding: 15px;
  }

  .search-method {
    padding: 15px;
  }

  .booking-info {
    grid-template-columns: 1fr;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .apbs-search-header h2 {
    font-size: 16px;
  }
  .apbs-tab-button {
    padding: 0px 8px !important;
    border-left: 1px solid #007cba !important;
    font-size: 11.2px !important;
  }
  div#DataTables_Table_0_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  div#DataTables_Table_0_length {
    display: flex;
    flex-direction: column-reverse;
    max-width: 50px;
  }
  div#DataTables_Table_0_filter {
    display: flex;
    flex-direction: column;
    max-height: 100px;
  }
  div#DataTables_Table_0_filter input {
    padding: 0px;
    width: 80%;
    height: 30px;
  }
  .apbs-service-image {
    height: 150px;
    width: 80%;
    margin: auto;
  }
  .apbs-service-title,
  .apbs-service-subtitle {
    font-size: 18px;
  }

  div#wc-stripe-express-checkout-element {
    /* bottom: 20px; */
    right: 0;
    align-items: center;
  }

  #wc-stripe-express-checkout-element > div {
    flex: 1;
    min-width: 80px !important;
    max-width: 100%;
  }
  .logo-container {
    width: 100%;
    justify-content: space-around;
    gap: 10px;
  }

  .apbs-search-form {
    padding: 20px;
  }

  .apbs-form-row {
    flex-direction: row;
    gap: 15px;
  }
  .apbs-date-field {
    min-width: 150px;
    max-width: 100%;
  }
  .apbs-support-text {
    width: 100%;
  }
  .apbs-airport-field,
  .apbs-promo-field {
    min-width: 100%;
  }

  .apbs-form-footer {
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .elementor *,
  .elementor :after,
  .elementor :before {
    box-sizing: border-box;
  }
  @media (max-width: 768px) {
    .apbs-support-text {
      font-size: 16px;
    }
  }
  @media (max-width: 768px) {
    .apbs-support-text {
      width: 100%;
    }
  }
  .apbs-support-text {
    min-height: 60px;
  }
  .apbs-support-text {
    font-size: 16px;
  }

  .apbs-rating {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .apbs-search-wrapper {
    margin: 0 -15px;
  }

  .apbs-search-form {
    padding: 5px 15px;
  }
  .apbs-form-footer {
    padding-top: 0px;
  }
  .apbs-input-wrapper input,
  .apbs-input-wrapper select {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }

  .apbs-field-icon {
    left: 10px;
    width: 18px;
    height: 18px;
  }

  .apbs-search-button {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .apbs-date-field {
    max-width: 100%;
  }

  .apbs-service-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .apbs-popup-top-section {
    padding: 10px;
    flex-wrap: wrap;
  }
  .apbs-popup-logo img {
    max-width: 130px !important;
  }
  .apbs-popup-logo {
    flex: none;
    order: 1;
  }

  .apbs-popup-info {
    order: 2;
  }
  .apbs-park-logo img {
    max-width: 70px !important;
  }
  .apbs-popup-price-section {
    order: 3;
    align-items: flex-start;
    margin-top: 15px;
  }

  .apbs-popup-tabs {
    overflow-x: auto;
    white-space: nowrap;
  }

  .income-stats-grid {
    grid-template-columns: 1fr;
  }
  .apbs-service-image {
    margin-bottom: 10px;
  }
  .apbs-popup-header h3 {
    margin: 0;
    font-size: 18px;
  }

  .recent-bookings-table th,
  .recent-bookings-table td {
    padding: 8px;
  }
  button.apbs-book-now-btn {
    width: auto !important;
    font-size: 14px !important;
    padding: 10px 30px !important;
  }
}
/* Mobile Responsive */
@media (max-width: 525px) {
  .apbs-pricing-card {
    padding: 10px 5px;
    margin: 0px;
  }
  div#wc-stripe-express-checkout-element {
    bottom: 70px;
  }

  .apbs-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .apbs-logo::before {
    font-size: 28px;
  }

  .apbs-plan-title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .apbs-current-price {
    font-size: 24px;
    line-height: 33px;
  }

  .apbs-original-price {
    font-size: 20px;
  }

  .apbs-price-period {
    font-size: 16px;
  }
  .apbs-features {
    margin: 0px;
  }
  .apbs-service-title,
  .apbs-service-subtitle {
    font-size: 18px;
    margin: 0px;
  }

  .apbs-feature-item {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .apbs-feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .apbs-car-park-info {
    margin: 10px 0;
    padding: 0;
  }
  .apbs-feature-icon::before {
    font-size: 12px;
  }

  .apbs-car-park-item {
    font-size: 16px;
  }

  .apbs-info-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }

  .apbs-info-icon::before {
    font-size: 12px;
  }

  .apbs-book-now-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 320px) {
  .apbs-pricing-card {
    padding: 25px 15px;
  }

  .apbs-current-price {
    font-size: 25px;
  }

  .apbs-plan-title {
    font-size: 32px;
  }

  .apbs-service-title,
  .apbs-service-subtitle {
    font-size: 20px;
  }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .apbs-pricing-card {
    max-width: 450px;
    padding: 45px 35px;
  }
}
