.navbar-brand img {
  width: 210px;
}

.hero-single::before {
  background:
    /*linear-gradient(to bottom, #051937, rgba(0, 0, 0, .3), rgba(0, 0, 0, .1), rgba(0, 0, 0, .1), rgba(0, 0, 0, .1))*/
    rgba(0, 0, 0, .1);
}

.header::before {
  background: rgba(252, 255, 255, 0.5);
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 133px;
  z-index: 2;
  background: linear-gradient(to bottom, #051937, rgba(0, 0, 0, .4), rgba(0, 0, 0, .3), rgba(0, 0, 0, .3), rgba(0, 0, 0, .2));
}

.navbar .nav-item .nav-link {
  font-weight: 600;
}

.hero-single {
  padding-top: 230px;
  padding-bottom: 270px;
}

.site-breadcrumb {
  padding-top: 195px;
  padding-bottom: 70px;
}

.site-breadcrumb-bottom-115 {
  padding-bottom: 115px;
}

.ui-widget.ui-widget-content {
  z-index: 999 !important;
}


@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 250px;
  }
}

.hotel-price-amount {
  font-size: 16px;
  display: inherit;
}

.search-nav .nav-link,
.search-nav .nav-link i {
  font-weight: 600;
}

.guest-summary-trigger {
  cursor: pointer;
  background-color: #fff;
}

.guest-selector-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1100;
  background: white;
  margin-top: 5px;
}

.counter-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-control input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: bold;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1001;
  margin-top: 2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.autocomplete-item:hover {
  background-color: #f8f9fa;
}

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

.search-form .passenger-qty input {
  width: 38px;
}

.passenger-box .counter-control .c-button {
  border: none;
  width: 35px;
  height: 35px;
  line-height: 32px;
  border-radius: 50px;
  background: var(--theme-color-light);
}

.passenger-box .counter-control .c-button i {
  position: unset !important;
  font-size: 16px !important;
}

.error-wrapper h1 {
  font-size: 52px;
}

@media (max-width: 600px) {
  .hero-single .hero-content .hero-title {
    font-size: 28px;
  }

  .hero-single .hero-content p {
    font-size: 18px;
  }

  .search-nav .nav-item {
    margin: 1px;
  }

  .search-nav {
    border-radius: 5px;
  }

  .search-nav .nav-link i {
    display: block;
    font-size: 18px;
  }

  .search-nav .nav-link {
    width: 82px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
  }
}

/* Receipt Styles */
.receipt-container {
  background: #fff;
  padding: 40px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #eee;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.receipt-header {
  margin-bottom: 30px;
}

.receipt-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}

.receipt-header p {
  font-size: 13px;
  color: #444;
  margin-bottom: 3px;
}

.receipt-section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0 12px 0;
  color: #1a1a1a;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.receipt-details .hotel-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.receipt-details .hotel-address {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}

.receipt-details p {
  font-size: 13px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.receipt-details .room-info {
  font-weight: 600;
  margin-top: 12px;
  font-size: 13px;
}

.payment-table {
  width: 100%;
}

.payment-row {
  display: flex !important;
  /* Force flex for horizontal alignment */
  justify-content: space-between !important;
  padding: 5px 0;
  font-size: 13px;
  width: 100%;
}

.payment-row.main-label {
  font-weight: 600;
  margin-top: 8px;
}

.payment-row span:last-child {
  text-align: right;
  min-width: 120px;
  font-weight: 600;
}

.receipt-divider {
  border-top: 1px solid #eee;
  margin: 12px 0;
}

.receipt-total-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  padding-top: 12px;
}

.total-label {
  font-size: 15px;
  font-weight: 600;
}

.total-amount-box {
  text-align: right;
}

.total-amount {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.payment-status-info {
  font-size: 12px;
  color: #444;
  margin-top: 4px;
}

.receipt-footer {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 11px;
  color: #777;
  line-height: 1.6;
}

@media print {

  /* Surgical targeting of UI clutter */
  .preloader,
  .header,
  .footer-area,
  .site-breadcrumb,
  .breadcrumb-menu,
  .site-header,
  .site-footer,
  .no-print,
  .btn,
  #scroll-top,
  .copyright,
  .alert-warning,
  .main-navigation,
  .site-breadcrumb-bottom-115 {
    display: none !important;
  }

  /* Sanitize parent hierarchy */
  html,
  body,
  .main,
  main.main,
  .container,
  .my-5 {
    display: block !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    max-width: none !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    background: white !important;
  }

  /* Ensure standard background visibility */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Force receipt visibility and position */
  .receipt-container {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    margin: 0 !important;
    padding: 20px !important;
    width: 100% !important;
    max-width: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Prevent page breaks */
  .receipt-details,
  .payment-details {
    page-break-inside: avoid !important;
  }
}


/* Unified Focus for Password Fields */
.seamless-password-group {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.seamless-password-group:focus-within {
    border-color: #25BDC7 !important; /* Theme Primary */
    box-shadow: 0 0 0 0.25rem rgba(37, 189, 199, 0.25) !important;
    outline: 0;
}

.seamless-password-group .form-control {
    border: none !important;
}

.seamless-password-group .form-control:focus {
    box-shadow: none !important;
}

.seamless-password-group .input-group-text {
    border: none !important;
    transition: all 0.3s ease;
}
