.data-field-label {
    font-weight: bold;
    min-width: 180px;
    max-width: 200px;
}

.data-field-label-xs {
    font-weight: bold;
    min-width: 80px;
    max-width: 200px;
}

.data-field-label-s {
    font-weight: bold;
    min-width: 100px;
    max-width: 200px;
}
.data-field-label-m {
    font-weight: bold;
    min-width: 130px;
    max-width: 200px;
}

.data-field-value {
    font-weight: normal;
}

/* neutral hint on any sortable column */
.osn-table th.orderable>a {
    position: relative;
    padding-right: 1rem;
    /* room for the arrow */
    text-decoration: none;
    white-space: nowrap; /* Prevent wrapping */
}

.osn-table th.orderable>a::after {
    content: "↕";
    /* unsorted */
    position: absolute;
    right: 0;
    font-size: .8em;
    opacity: .5;
}

/* current sort direction */
.osn-table th.orderable.asc>a::after {
    content: "▲";
    opacity: 1;
}

.osn-table th.orderable.desc>a::after {
    content: "▼";
    opacity: 1;
}

/* optional: highlight the sorted column header */
/* .osn-table th.asc,
.osn-table th.desc {
    background: rgba(0, 0, 0, .04);
} */

.spec-content pre {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f9fa;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

/* 403 page */
body.error-403-body {
    background-color: #041e42;
}

.error-403-wrap {
    min-height: calc(100vh - 14rem);
    background: radial-gradient(circle at 70% 20%, #0b2d63 0%, #041e42 55%, #03122b 100%);
    color: #e9f2ff;
    border-radius: 1rem;
    border: 1px solid rgba(108, 196, 255, 0.25);
    padding: 2rem 1rem;
}

.error-403-code {
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.05em;
    margin: 0;
}

.error-403-title {
    font-size: clamp(1.25rem, 3vw, 2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #67d6ff;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.error-403-message {
    max-width: 36rem;
    font-size: 1.1rem;
    margin: 0 0 1.25rem;
}

.error-403-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #67d6ff;
    border-radius: 0.85rem;
    padding: 0.65rem 1rem;
    color: #c8f3ff;
    background-color: rgba(4, 30, 66, 0.45);
}

.error-403-image {
    max-width: min(560px, 100%);
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .error-403-message {
        margin-left: auto;
        margin-right: auto;
    }
}