.repeater-item {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.repeater-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.field-group {
    width: 93%;
}

.repeater-fields .field-row {
    display: block;
    margin-bottom: 15px;
}

@media only screen and (max-width: 600px) {
    .gfield select {
        width: 100%;
    }
}

@media only screen and (min-width: 601px) {


    .repeater-fields .field-row {
        display: flex;
        gap: 15px;
    }

    .field-group.fifty-split {
        width: 45%;
    }

    .field-group.thirty-split {
        width: 29.5%;
    }

    .field-group.full-row {
        width: 93%;
    }

    .field-row input,
    .field-row select {
        flex: 1;
    }

}

.date-picker {
    cursor: pointer;
}

.remove-repeater-section {
    background: #E21E27;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.remove-repeater-section:hover {
    background: #FF474E;
}

.add-work-history,
.add-education {
    background: #0D4DA0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 20px;
}

.gform-body.gform_body h3 {
    color: #0D4DA0;
    font-size: 24px;
}

.gform-body.gform_body h4 {
    font-size: 22px;
}

.required {
    color: red;
    margin-left: 4px;
}

.field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.field-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.field-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.ce_validator input {
    display: none;
}