.result-card {
  border: 1px solid #ddd;
  border-radius: 15px !important;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.result-details-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.result-info {
  margin-top: 1rem;
}

.results-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* padding: 0.5rem; */
  gap: 1.0rem;
}

.results-card {
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.results-card img {
    width: 100%;
    height: 20rem;
    aspect-ratio: 4 / 23;
    padding: 0.25em;
    border-radius: 16px;
    object-fit: cover;
  }
.results-card   h1 { /* result card title */
    font-family: "Cormorant", serif !important;
    font-optical-sizing: auto !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 2.0rem !important;
  }
.results-card   h2 { /* result card location */
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 1.125rem !important;
  }
.results-card   h3 { /* result card accommodations */
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 1.0rem !important;
  }
.results-card   h4 { /* result card "Per night" */
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 0.75rem !important;
    text-align: end;
  }
.results-card   h5 { /* result card price */
    font-family: "Cormorant", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 500 !important;
    font-style: bold !important;
    font-size: 2.75rem !important;
    text-align: end;
    span {
      font-size: 2.0rem !important;
    }
    margin-top: -0.75rem;
    }
.results-card   h6 { /* result card total */
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-size: 1.25rem !important;
  }


.results-badge {
  max-width: 32px;
  max-height: 32px;
  text-align: end;
}

.results-content {
  padding: 0.5rem;
}

.results-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.results-location {
  color: #555;
  margin-bottom: 0.5rem;
}

.results-price {
  color: #4CAF50;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.scs-price-pin {
  font-family: "Manrope", sans-serif !important;
  font-size: 1.0rem !important;
  font-optical-sizing: auto !important;
  font-weight: 300 !important;
  font-style: normal !important;
  line-height: 1rem;
  height: 1.5rem;
  background: var(--scs-warm-white-100) !important;
  color: var(--scs-dark-blue-500) !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
}

.scs-price-pin.active {
  font-family: "Manrope", sans-serif !important;
  font-size: 1.0rem !important;
  font-optical-sizing: auto !important;
  font-weight: 300 !important;
  font-style: normal !important;
  line-height: 1rem;
  height: 1.5rem;
  background: var(--scs-light-blue-400) !important;
  color: var(--scs-warm-white-100) !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15) !important;
  transform: scale(1.1);
  z-index: 10 !important;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-20px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.bounce {
  animation: bounce 0.6s ease;
}

#sts-submit-button {
  background-color: var(--scs-light-blue-400) !important;
  color: var(--scs-warm-white-100) !important;
  border-radius: 15px !important;
  padding: 0.5rem 1rem !important;
  font-size: 1.25rem !important;
  font-family: "Cormorant", serif !important;
  font-weight: bold !important;
  text-align: center !important;
}

#sts-submit-button:hover {
  background-color: var(--scs-orange-600) !important;
  color: var(--scs-warm-white-100) !important;
  border-radius: 15px !important;
  padding: 0.5rem 1rem !important;
  font-size: 1.25rem !important;
  font-family: "Cormorant", serif !important;
  font-weight: bold !important;
  text-align: center !important;
}

#ftsText::placeholder {
  color: var(--scs-dark-blue-500);
  opacity: 0.4;
}

#fts-reset-button {
  border-radius: 15px !important;
  border-style: none !important;
  font-size: 1.0rem !important;
  font-family: "Manrope", serif !important;
  font-weight: bold !important;
}

.search-form-reset {
  border-radius: 15px !important;
  border-style: none !important;
  background-color: var(--scs-light-blue-400) !important;
  color: var(--scs-warm-white-100) !important;
  padding: 0.5rem 1rem !important;
  font-size: 1.25rem !important;
  font-family: "Manrope", serif !important;
  font-weight: bold !important;
}

#search .input-group {
  background-color: var(--scs-warm-white-100) !important;
  border-radius: 15px !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1) !important;
}

#search .input-group-text {
  background-color: white !important;
  color: var(--scs-dark-blue-500) !important;
}

#search button {
  border-color: var(--bs-border-color) !important;
}

#minPrice, #maxPrice, #minArea, #maxArea {
  width: 3.25rem;
  font-size: 0.75rem;
  font-family: "Manrope", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: 300 !important;
  font-style: normal !important;
  color: var(--scs-dark-blue-500) !important;
}

#minPrice, #minArea {
  text-align: start;
}

#maxPrice, #maxArea {
  text-align: end;
}

#ftsText {
  outline: none !important;
  border: 1px solid #ccc !important;
  background-color: #fff;
  color: #000;
}

#ftsText:focus,
#ftsText:hover {
  outline: none !important;
  border-color: #ccc !important;
}

.noUi-connect {
  background-color: var(--scs-light-blue-400) !important;
}

.noUi-handle:focus {
  outline: none;
}

.noUi-handle {
  background-color: transparent !important;
  box-shadow: none !important;
  align-self: center !important;
  border: none !important;
}

.noUi-handle:after, .noUi-handle:before {
  content: none !important;
}

.noUi-handle-lower {
  background: url('/images/slider_down.png') no-repeat center center !important;
  background-size: contain;
  width: 24px;
  height: 24px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  top: -10px;
  cursor: pointer;
}

.noUi-handle-upper {
  background: url('/images/slider_up.png') no-repeat center center !important;
  background-size: contain;
  width: 24px;
  height: 24px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  top: -10px;
  cursor: pointer;
}

#button-filter {
  background-color: var(--scs-light-blue-400);
  color: white !important;
  border: none;
}
#button-filter:hover {
  filter: brightness(1.1);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;           /* Remove the default outline */
  box-shadow: none !important;  /* Remove Bootstrap's blue glow */
  border-color: inherit;   /* Optional: keep the default border color */
}

.form-control:focus {
  box-shadow: none !important;
  outline: none;
}