body {
  font-family: 'Muli', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}
.dimmed-text{
  color: #b4b4b4;
}
h1 {
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 0.5em;
    font-weight: 400;
}

.container {
    max-width: 600px;
    margin: 4rem auto 0 auto;
    padding: 2rem;
    background: #e6e6e9;
    border-radius: 15px;
}

label {
  display: block;
  margin: 1rem 0 0.2rem;
  font-weight: 500;
}

.form-error {
  background-color: #ffe6e6;
  color: #d10000;
  border: 1px solid #d10000;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
#booking-form{
  padding-right: 15px;
}
.error-box {
  background: #ffe0e0;
  color: #b30000;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}


input, select, textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ffffff;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 0.1px;
    font-size: 1rem;
    font-family: 'Muli';
}

input:-internal-autofill-selected {
    border-color: transparent;
}

input:focus,
textarea:focus {
  background-color: #c5c5cc; /* Slightly darker gray on focus */
  outline: none;
  border: 1px solid #c5c5cc;
  color: #000000;
  letter-spacing: 0.1px;
  font-weight: 600;
}

button {
    background: #000;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Muli';
    font-size: 17px;
    letter-spacing: 0px;
}
button:hover{
  background: #49495e;
}

.lang-switch {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
}
.lang-switch a {
    color: #49495e;
    text-decoration: none;
}
.lang-switch a:hover {
  color: #000;
  font-weight: bold;
}
.lang-switch a.active {
  color: #000;
  font-weight: bold;
}

footer {
  text-align: center;
  margin: 2rem auto;
  font-size: 0.8rem;
  color: #aaa;
}

#time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.time-slot-btn {
    background: #79798a;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Muli';
    transition: all 0.2s ease;
}

.time-slot-btn:hover {
    background: #afafb8;
}

.time-slot-btn.selected {
  background: #000;
  color: #fff;
}

/* Confirmation box */

.confirmation-box {
    max-width: 600px;
    margin: 6rem auto;
    background: #e6e6e9;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}
    .confirmation-box h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .confirmation-box p {
      font-family: 'Muli', sans-serif;
      font-size: 1.1rem;
      color: #444;
    }
    .confirmation-box .date {
      font-weight: bold;
      margin-top: 1rem;
      font-size: 1.2rem;
    }
    .confirmation-box a {
        display: inline-block;
        margin-top: 1rem;
        text-decoration: none;
        background: #000000;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }
