.form__files.highlight {
    background-color: #f0f8ff;
    border: 2px dashed #1E2F74;
    border-radius: 5px;
}

.form__file {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form__file-name {
    margin: 0 10px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form__file-action {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
}

.form__file-action:hover {
    background-color: #ffebee;
}

.form__files-error {
    color: #d32f2f;
    font-size: 14px;
    margin: 5px 0;
    display: none;
}

.form__file input {
    display: none;
}

.checkbox-widget__label {
    cursor:  pointer;
}