
    form fieldset {
        margin-bottom: 20px;
        border: 1px solid #ccc;
        padding: 15px;
    }

    .form-row {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .form-row label {
        width: 220px;
        margin-right: 10px;
    }

    .form-row input,
    .form-row select {
        flex: 1;
    }

    .form-row input[type="checkbox"] {
        width: auto;
        margin-right: 5px;
    }

        .form-row input[type="radio"] {
        margin-right: 5px;
    }


    .form-row .radio-option {
        display: inline-block;
        margin-right: 15px;
    }

    .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 60%;
    border-radius: 10px;
}
.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

