html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Range Section Spacing */
.range-section-header {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

    .range-section-header h3 {
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Two-Column Odd/Even Wrapper */
.range-grid-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem; /* Creates a distinct physical break before the next range */
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.grid-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.column-title {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 5px;
}

/* Location Card Styling */
.location-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.status-available {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.status-hold {
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.status-pending {
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.status-reserved {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.status-sold {
    background-color: #e2e3e5;
    border-color: #d6d8db;
}