#siyazuza-booking-container {
    width: 100%;
    /* Ensure it tries to take full width */
    max-width: 100%;
    /* Remove the 600px restriction */
    margin: 20px 0;
    /* Remove auto-centering to align with container edges */
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    /* Crucial: keeps padding inside the 100% width */
}

/* Ensure all internal elements also respect the container boundaries */
#siyazuza-booking-form {
    width: 100%;
}

.form-section {
    margin-bottom: 15px;
}

.form-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-section input[type="text"],
.form-section input[type="tel"],
.form-section input[type="number"],
.form-section input[type="date"],
.form-section input[type="time"],
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Prevents input fields from overshooting the edges */
}

.form-section textarea {
    height: 100px;
}

#siyazuza-booking-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    /* Replace with logo primary colour */
    color: var(--base-2);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#siyazuza-booking-form button[type="submit"]:hover {
    background-color: var(--accent);
    color: var(--base-2);
    /* Darker shade for hover effect */
}

#siyazuza-booking-form p {
    margin: 5px 0 15px;
}