.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-section h2 {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 32px;
    color: #4A2511;
    margin-bottom: 40px;
    font-weight: bold;
}

.room-item {
    margin-bottom: 15px;
}

.room-item h3 {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #4A2511;
    font-weight: normal;
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.quantity-input {
    margin-top: 12px;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quantity-input label {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #777777;
}

.quantity-field {
    width: 64px;
    height: 36px;
    padding: 4px 8px;
    box-sizing: border-box;
    border: 1px solid #B27B60;
    border-radius: 999px;
    background-color: #ffffff;
    color: #4A2511;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.quantity-field:focus {
    border-color: #4A2511;
    box-shadow: 0 0 0 2px rgba(178, 123, 96, 0.25);
}

/* Usuwamy brzydkie natywne strzałki, zostawiamy czyste pole liczby */
input[type="number"].quantity-field::-webkit-outer-spin-button,
input[type="number"].quantity-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].quantity-field {
    -moz-appearance: textfield;
}

@media (max-width: 600px) {
    .quantity-input {
        align-items: flex-start;
        gap: 8px;
    }
}

.visualization-options {
    margin-top: 20px;
}

.visualization-item {
    margin-bottom: 15px;
}

.visualization-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.visualization-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    /* Dodajemy wyraźne style dla checkboxa */
    border: 2px solid #333;
    appearance: auto; /* Przywraca domyślny wygląd checkboxa */
    -webkit-appearance: auto; /* Dla przeglądarek WebKit */
    -moz-appearance: auto; /* Dla Firefoxa */
}

.visualization-item input[type="checkbox"]:checked {
    /* Upewniamy się, że zaznaczony checkbox jest widoczny */
    background-color: #fff;
    border-color: #333;
}

.visualization-item .description {
    color: #666;
    font-size: 14px;
}

.final-section {
    text-align: center;
    margin-top: 40px;
}

.email-submit-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.email-input {
    padding: 10px 15px;
    width: 300px;
    background-color: #EEEEEE; /* Szare tło */
    border: none; /* Usuwamy border */
    border-radius: 0; /* Usuwamy zaokrąglenia */
    font-size: 16px;
    outline: none;
}

.submit-button {
    padding: 10px 20px;
    background-color: #B27B60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #9e6b52;
}

.consent-container {
    margin-top: 20px;
}

.consent-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.consent-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: auto; /* Przywraca domyślny wygląd checkboxa */
    -webkit-appearance: auto;
    -moz-appearance: auto;
    border: 2px solid #333;
    cursor: pointer;
}

.consent-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* Apply to all checkbox sections */
.visualization-options .visualization-item label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.visualization-options .visualization-item span:first-of-type {
    white-space: nowrap;
}

.visualization-options .visualization-item .description {
    color: #666;
    word-break: keep-all;  /* Alternative approach that only prevents breaks at hyphens */
}

/* Style for the consent checkbox at the bottom */
.consent-container label {
    display: flex;
    align-items: center;
    gap: 8px;
}