:root {
  --fs-blue: #1a4fa0;
  --fs-yellow: #ffc300;
  --fs-gray: #f5f5f5;
  --fs-border: #e0e0e0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header {
    background-color: #0073aa;
    color: white;
    padding: 20px;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.freestays-search-form {
  background: var(--fs-gray);
  padding: 24px 24px 16px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,79,160,0.07);
  max-width: 700px;
  margin: 32px auto 24px auto;
  border: 1px solid var(--fs-border);
}

.fs-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  align-items: center;
}

.freestays-search-form input[type="text"],
.freestays-search-form input[type="date"],
.freestays-search-form input[type="number"] {
  padding: 8px 12px;
  border: 1px solid var(--fs-border);
  border-radius: 6px;
  font-size: 1rem;
  min-width: 120px;
  background: #fff;
}

.freestays-search-form label {
  font-weight: 500;
  color: var(--fs-blue);
  margin-right: 6px;
}

.fs-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.fs-btn-primary {
  background: var(--fs-yellow);
  color: var(--fs-blue);
}

.fs-btn-primary:hover {
  background: #ffd900;
}

.fs-btn-yellow {
  background: #FFC300;
  color: #003366;
}

#freestays-search-results {
  margin-top: 32px;
}

/* Card style voor zoekresultaten (voorbeeld) */
.fs-hotel-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fff;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fs-hotel-card .fs-hotel-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--fs-gray);
}

.fs-hotel-card .fs-hotel-info {
  flex: 1;
}

.fs-hotel-card .fs-hotel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fs-blue);
  margin-bottom: 6px;
}

.fs-hotel-card .fs-hotel-location {
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.fs-hotel-card .fs-hotel-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fs-yellow);
  margin-top: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  flex: 1;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #0073aa;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}