
:root {
    --columnWidth: 360px
}

div {
    border-radius: 5px;
    font-size: 0.75rem;
    font-family: Calibri;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: visible
}

*::-webkit-scrollbar {
    display: none
}

input {
    font-size: .8rem;
    background: transparent;
    border: 1px solid #888;
    border-radius: .5rem;
}

button {
    margin: 1px 4px;
    background: transparent;
    border: 1px solid #888;
    border-radius: .5rem;
}

[contenteditable] {
    outline: 0px solid transparent;
}

table {
    width: 100%;
    border-spacing: 0;
}

th, td {
    padding: 4px;
    border-left: 1px solid #bbb;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f8f8;
}

tr:last-child td {
    border-bottom: none;
}

td:first-child, th:first-child {
    border-right: none;
}

/* Highly specific selector with !important */
#editable.editable {
    -webkit-line-break: normal !important;
}

/* Inline pending-state overlay for async controls (View.Pending). */
.pending {
    pointer-events: none;
    opacity: 0.55;
    position: relative;
}
.pending::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff30;
    border-top-color: #ffffffcc;
    border-radius: 50%;
    animation: pending-spin 0.7s linear infinite;
    pointer-events: none;
    z-index: 10;
}
@keyframes pending-spin {
    to { transform: rotate(360deg); }
}
