.business_data {
    width: 100%;
    height: 100%;
    margin-top: 0px;
    border-radius: 0px;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
}

.business_data > .business_data_head {
    width: 92%;
    display: flex;
    align-items: center;
    padding-top: 30px;
    flex-direction: column;
}

.business_data > .business_data_head > h1 {
    display: inline-flex;
    margin: 0;
}

.business_data_body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
}

.business_data_body_subcontainer {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.business_data_body_option {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 88%;
    height: 6vh;
    margin-bottom: 20px;
    /* padding-left: 10px; */
    cursor: pointer;
    font-size: 20px;
    color: #073763;
}

.business_data_body_option.select {
    background-color: #cddee6; 
}

/* New Styles for Input Fields */
.input_container {
    width: 90%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input_container label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #073763;
}

.input_container input[type="text"] {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 16px;
}

/* Styles for the Integer Input */
.integer_input_container {
    width: 90%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integer_input_container label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #073763;
}

.integer_input {
    display: flex;
    align-items: center;
}

.integer_input button {
    width: 30px;
    height: 30px;
    background-color: #cddee6;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    color: #073763;
}

.integer_input input {
    width: 60px;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 5px;
    font-size: 16px;
}

/* Styles for the Continuar Button */
.continue_button {
    width: 90%;
    height: 45px;
    background-color: #073763;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}
