.property-editor-grid {
    display: grid;
    /* grid-template-columns: max-content 1fr min-content min-content min-content; */
    grid-template-columns: max-content 1fr max-content max-content max-content;
    row-gap: 1.5ex;
    margin: 1ex 0;
    /* font-family: 'Akkurat Light Pro', sans-serif; */
}

.property-editor-grid div.text {
    font-family: 'Akkurat Pro', sans-serif;
    padding-right: 1em;
    font-weight: bold;
    font-size: 12px;
}

.property-editor-grid div.value {
    overflow-x: clip;
    overflow-y: visible;
}

.property-editor-grid div.icon {
    font-family: 'Akkurat Pro', sans-serif;
    line-height: 19px;

    padding-left: 3px;
}

.property-editor-grid div.icon i {
    cursor: pointer;
}

.property-editor-grid select {
    width: 100%;
    background: #808080;
    color: white;
    border: 0;
    text-shadow: 1px 1px 2px black;
    padding: 5px;
}

.message-box-body .property-table .property-label {
    color: var(--whispr-black);
    font-weight: bold;
}

.message-box-body input,
.message-box-body select,
.message-box-body textarea,
.message-box-body .property-table input[type="text"],
.message-box-body .property-table input[type="email"],
.message-box-body .property-table input[type="url"],
.message-box-body .property-table input[type="datetime-local"],
.message-box-body .property-table input[type="password"],
.message-box-body .property-table input[type="number"],
.message-box-body .property-table input[type="date"] {
    background: #efefef;
    border: 0;
    color: var(--whispr-black);
    box-shadow: none;
    font-size: 12px;
    padding: 5px;
    text-shadow: none;
}


.property-editor-grid input[type="text"],
.property-editor-grid input[type="password"],
.property-editor-grid input[type="date"] {
    background: #808080;
    color: white;
    text-shadow: 1px 1px 2px black;

    border: 0; /* 1px solid black; */
    /* background: #303030; */
    /* color: #B0B0B0; */
    /* box-shadow: inset 1px 1px 2px 0px black; */
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
}

.property-editor-grid textarea {
    /* font-family: 'Akkurat Light Pro', sans-serif; */
    background: #808080;
    color: white;
    text-shadow: 1px 1px 2px black;
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    padding: 7px;
    resize: none;
}

.property-editor-grid textarea:focus-visible {
    outline-offset: -1px;
}

.property-editor-grid textarea.small-textarea {
    height: 30px;
}

.property-editor-grid .property-icons {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.property-editor-grid .property-icons div.arrows-alt-v {
    margin-top: auto;
    /* NOTE(jan): Nudge downward arrow to align with others. */
    padding-left: 2px;
}

.property-editor-grid .property-icons div.compress-alt {
    margin-top: auto;
}

.property-editor-grid .property-icons div.expand-alt {
    margin-top: auto;
}


.component-input-range {
    display: flex;
    align-items: center;
}
