.hl-attribute-field {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}
.hl-attr-control {
    position: relative;
    width: 50%;
}
select.hl-attr-select
 {
    width: 100%;
}

.hl-attr-label {
    margin: 0;
    font-weight: 600;
}

.hl-attr-select {
    width: 100%;
    height: 34px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    border-radius: 0;
}

/* Hide default arrow */
.hl-attr-select::-ms-expand {
    display: none;
}

.hl-attr-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    height: 16px;
    width: 16px;
}

/* Focus styles */
.hl-attr-select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}
