.floor-plans-wrapper {
  position: relative;
  background: var(--color-dark-blue);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.floor-plans-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.floor-plans-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  z-index: 2;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.floor-plans-container > h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 4rem);
  width: 100%;
  text-align: left;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.location-container > p {
  color: white;
  width: 100%;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  line-height: 1.6;
  max-width: 100%;
  text-align: justify;
  margin-bottom: 1rem;
}

.slider-container {
  position: relative;
  width: 600px;
  padding-top: 60px;
}

input[type="range"] {
  width: 100%;
  z-index: 1;
  position: relative;
}

.indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  pointer-events: none;
}

.vertical-line {
  width: 1px;
  height: 40px;
  background: #333;
  margin: 0 auto;
}

.value-label {
  text-align: center;
  font-size: 14px;
  margin-bottom: 4px;
}

.floor-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #555;
  pointer-events: none;
}

/* ------Floor Plan table------ */

.floor-plan-table {
  color: white;
  /* border: 1px solid red; */
  width: 100%;
  margin-bottom: 2rem;
  font-size: clamp(0.7rem, 1vw, 1.1rem);
}

table td,
table th {
  padding: 1.2rem clamp(0.5rem, 1vw, 1rem); /* vertical | horizontal padding */
}

table th {
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

table th {
  text-align: left;
}
