/* GLOBAL STYLES – Applies to all screen sizes */
body {
  margin: 0;
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}

.logo {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

/* Inputs – text, email, phone */
input {
  margin: 5px;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: white;
  color: #000;
  border: none;
}

/* Style placeholder text */
input::placeholder {
  color: #555;
}

/* Dropdown – styled like inputs */
select {
  margin: 5px;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #555;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;

  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='10'%20viewBox='0%200%2010%2010'%3E%3Cpath%20fill='black'%20d='M0,2.5l5,5l5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

/* Submit button */
button {
  margin: 15px;
  padding: 12px 18px;
  font-size: 16px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

button:disabled {
  background-color: #555;
  cursor: not-allowed;
}

/* Time slot buttons */
.slot-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.slot-btn {
  margin: 5px;
  padding: 10px;
  border: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  width: 80px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 6px;
}

.slot-btn.selected {
  background-color: #007bff;
}

.slot-btn.disabled {
  background-color: #444;
  color: #696868;
  cursor: not-allowed;
}

/* Confirmation / Status Text */
.status {
  margin: 10px;
  color: #0f0;
  font-size: 16px;
  text-align: center;
  word-wrap: break-word;
}

/* Headings */
h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* MOBILE-ONLY STYLES */
@media (max-width: 600px) {
  body, .container {
    padding: 10px;
    text-align: center;
    width: 100%;
  }

  .slot-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .slot-btn {
    width: 100px;
    font-size: 16px;
    justify-content: center;
  }

  input,
  select,
  button {
    width: 100% !important;
    max-width: none;
    font-size: 16px;
  }

  h1, h2 {
    font-size: 18px;
    margin: 10px 0;
  }

  .logo {
    max-width: 80%;
    height: auto;
  }

  #slotStatus,
  #confirmation {
    font-size: 16px;
    margin: 15px 0;
    text-align: center;
    color: #0f0;
  }
}
