/* Bokningssida – Formulär */
form {
  background-color: #ffffff;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: 500;
  margin-top: 10px;
  color: #333;
}

form input,
form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  outline: none;
}

form button {
  margin-top: 10px;
  background-color: #1e90ff;
  color: white;
  padding: 12px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #0d6efd;
}

#confirmationMessage {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #0e0f0f;
  padding: 25px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 8px;
  text-align: center;
}
header.hero {
  /*  background-image: url('imgHeder/header-clean.jpg'); */
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

header.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

header.hero .hero-content {
  position: relative;
  color: white;
  z-index: 2;
}
.spinner {
  margin: 0 auto;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #1e90ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
  transition: color 0.3s;
}

a:hover {
  color: #005599;
}
