body {
    margin: 0;
}

.header-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    background-color: azure;
    width: 100%;
    margin-bottom: 30px;
}

.header-banner h1 {
    font-family: sans-serif;
    font-weight: bold;
    margin-bottom: 5px;
}

.header-banner h2 {
    font-family: sans-serif;
    font-weight: lighter;
    font-size: small;
    font-style: italic;
}

.form-container-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.leading-question {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}

.room-name-input {
    padding: 10px;
    font-size: 1em;
    width: 80%;
    max-width: 300px;
    box-sizing: border-box;
}

.button-container-flex {
  display: flex;
  justify-content: center; /* Horizontally center flex items */
  width: 100%
  /* Uncomment the next line to ALSO center vertically */
  /* align-items: center; */

  /* If centering vertically, the container needs some height */
  /* min-height: 200px; */ /* Example height */
}

/* --- Style the BUTTON itself --- */
.large-button {
  /* Make it larger */
  padding: 15px 30px; /* Increase padding (top/bottom, left/right) */
  font-size: 1.2em;   /* Increase font size (adjust as needed) */
  width: 85%;
  max-width: 300px;

  /* Optional: Add some basic styling */
  cursor: pointer;       /* Indicate it's clickable */
  border: 1px solid #ccc; /* Example border */
  border-radius: 5px;    /* Slightly rounded corners */
  background-color: #28a745; /* Example background color */
  color: white;          /* Example text color */
  border: none;          /* Remove default border if needed */
}

/* Optional: Add hover effect */
.large-button:hover {
  background-color: #218838;
}
