.vdxa-data-enrichment-container {
    width: 100%;
    height: 100%;
    margin-left: 600px;
    display: flex;
    min-height: 32px;
}

.vdxa-data-enrichment-btn {
    background-color: #484B4E;
    color: white;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-right: 8px;
    font-size: 14px;
    height: 32px;
}
.vdxa-data-enrichment-btn:hover {
    background-color: #616467;
}

.vdxa-data-enrichment-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 4px;
    border-radius: 50%;
}
.vdxa-data-enrichment-indicator--high {
    background-color: #27ae60;
}
.vdxa-data-enrichment-indicator--medium {
    background-color: #f39c12;
}
.vdxa-data-enrichment-indicator--low {
    background-color: #e74c3c;
}

.vdxa-data-enrichment-arrow {
    margin-right: 4px;
}

.vdxa-data-enrichment-value-container {
    flex: 1;
    color: #777777;
    padding: 5px 10px 4px 10px;
    border: 1px solid #D0D0D0;
    background-color: white;
    overflow: auto;
    word-wrap: break-word;
    line-height: 21px;
    white-space: pre-wrap;
}
.vdxa-data-enrichment-value-container.textarea {
    min-height: 60px;
    white-space: pre-wrap;
    overflow-x: hidden;
    overflow-y: auto;
}

.vdxa-data-enrichment-value {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.x-form-item:has(> div.vdxa-data-enrichment-container) {
    width: 700px !important;
}