.ramtech-ui {
    --ramtech-ui-bg: #f8f9fa;
    --ramtech-ui-paper: #ffffff;
    --ramtech-ui-ink: #323a45;
    --ramtech-ui-ink-soft: #6c7682;
    --ramtech-ui-line: #dce0e5;
    --ramtech-ui-line-strong: #cbd2da;
    --ramtech-ui-row-alt: #fafbfc;
    --ramtech-ui-row-hover: #f6f8fa;
    --ramtech-ui-accent: #e74011;
    --ramtech-ui-accent-deep: #c0330c;
    --ramtech-ui-accent-soft: #fde4dd;
    --ramtech-ui-accent-ring: rgba(231, 64, 17, 0.25);
    --ramtech-ui-good-bg: #e6f4ea;
    --ramtech-ui-good: #1e8e3e;
    --ramtech-ui-shadow-sm: 0 2px 8px rgba(50, 58, 69, 0.06);
    --ramtech-ui-shadow-md: 0 12px 32px rgba(50, 58, 69, 0.12);
    --ramtech-ui-radius: 14px;
    --ramtech-ui-radius-sm: 10px;
    --ramtech-chart-1: #e74011;
    --ramtech-chart-2: #f07653;
    --ramtech-chart-3: #f7ab94;
    --ramtech-chart-4: #fce0d6;
    --ramtech-chart-5: #323a45;
    --ramtech-chart-6: #555f6d;
    --ramtech-chart-7: #7a8796;
    --ramtech-chart-8: #a2aebd;
    --ramtech-chart-9: #cbd2da;
    --ramtech-chart-10: #e9ecef;
    color: var(--ramtech-ui-ink);
    line-height: 1.5;
}

.ramtech-ui *,
.ramtech-ui *::before,
.ramtech-ui *::after {
    box-sizing: border-box;
}

.ramtech-ui a {
    color: var(--ramtech-ui-accent-deep);
    text-decoration: none;
}

.ramtech-ui a:hover {
    color: var(--ramtech-ui-accent);
}

.ramtech-ui-page,
.ramtech-ui-shell {
    background: var(--ramtech-ui-bg);
    color: var(--ramtech-ui-ink);
}

.ramtech-ui-page-head,
.ramtech-ui-header {
    background: var(--ramtech-admin-header-bg, #252d36);
    border: 1px solid var(--ramtech-admin-header-bg, #252d36);
    border-radius: var(--ramtech-ui-radius);
    box-shadow: var(--ramtech-ui-shadow-sm);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 0 16px;
    padding: 24px;
}

.ramtech-ui-page-head h1,
.ramtech-ui-header h1 {
    color: var(--ramtech-ui-paper);
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.ramtech-ui-page-head p,
.ramtech-ui-header p,
.ramtech-ui-muted,
.ramtech-ui .description {
    color: var(--ramtech-ui-ink-soft);
}

.ramtech-ui-header p {
    color: #c7ced7;
}

.ramtech-ui-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ramtech-ui-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ramtech-ui-card,
.ramtech-ui-panel,
.ramtech-ui-stat,
.ramtech-ui-data-view {
    background: var(--ramtech-ui-paper);
    border: 1px solid var(--ramtech-ui-line);
    border-radius: var(--ramtech-ui-radius);
    box-shadow: var(--ramtech-ui-shadow-sm);
    overflow: hidden;
    position: relative;
}

.ramtech-ui-card::before,
.ramtech-ui-panel::before,
.ramtech-ui-stat::before {
    background: var(--ramtech-ui-card-tip, var(--ramtech-ui-accent));
    border-radius: calc(var(--ramtech-ui-radius) - 1px) calc(var(--ramtech-ui-radius) - 1px) 0 0;
    content: "";
    height: 3px;
    left: 1px;
    position: absolute;
    right: 1px;
    top: 0;
}

.ramtech-ui-card--no-tip::before {
    display: none;
}

.ramtech-ui-card,
.ramtech-ui-panel {
    padding: 32px;
}

.ramtech-ui-card--danger {
    border-left: 4px solid #b32d2e;
}

.ramtech-ui-card h2,
.ramtech-ui-card h3,
.ramtech-ui-panel h2,
.ramtech-ui-panel h3 {
    color: var(--ramtech-ui-accent);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 14px;
}

.ramtech-ui .ramtech-ui-button,
.ramtech-ui a.ramtech-ui-button,
.ramtech-ui button.ramtech-ui-button,
.ramtech-ui input.ramtech-ui-button,
.ramtech-ui .button,
.ramtech-ui .button.button-primary,
.ramtech-ui .page-title-action {
    align-items: center;
    background: var(--ramtech-ui-paper);
    border: 1.5px solid var(--ramtech-ui-line-strong);
    border-radius: 999px;
    color: var(--ramtech-ui-ink-soft);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    height: 44px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
    min-height: 44px;
    padding: 0 24px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.ramtech-ui-button-icon {
    flex: 0 0 auto;
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 16px;
}

.ramtech-ui .ramtech-ui-button:hover,
.ramtech-ui a.ramtech-ui-button:hover,
.ramtech-ui button.ramtech-ui-button:hover,
.ramtech-ui input.ramtech-ui-button:hover,
.ramtech-ui .ramtech-ui-button:active,
.ramtech-ui a.ramtech-ui-button:active,
.ramtech-ui button.ramtech-ui-button:active,
.ramtech-ui input.ramtech-ui-button:active,
.ramtech-ui .ramtech-ui-button.is-active,
.ramtech-ui a.ramtech-ui-button.is-active,
.ramtech-ui .ramtech-ui-button[aria-current="page"],
.ramtech-ui a.ramtech-ui-button[aria-current="page"],
.ramtech-ui .button:hover,
.ramtech-ui .button:active,
.ramtech-ui .button.active,
.ramtech-ui .button.button-primary:hover,
.ramtech-ui .button.button-primary:active,
.ramtech-ui .button.button-primary.active,
.ramtech-ui .page-title-action:hover,
.ramtech-ui .page-title-action:active {
    background: var(--ramtech-ui-accent);
    border-color: var(--ramtech-ui-accent);
    color: var(--ramtech-ui-paper);
}

.ramtech-ui .ramtech-ui-button:focus-visible,
.ramtech-ui .button:focus-visible,
.ramtech-ui .page-title-action:focus-visible {
    box-shadow: none;
    outline: 2px solid var(--ramtech-ui-accent);
    outline-offset: 3px;
}

.ramtech-ui .submit {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
}

.ramtech-ui-button--icon {
    border-radius: 50%;
    font-size: 18px;
    height: 44px;
    padding: 0;
    width: 44px;
}

.ramtech-ui-field,
.ramtech-ui label {
    color: var(--ramtech-ui-ink-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.ramtech-ui label:has(> input:not([type="checkbox"]):not([type="radio"])),
.ramtech-ui label:has(> select),
.ramtech-ui label:has(> textarea) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ramtech-ui-input,
.ramtech-ui input[type="date"],
.ramtech-ui input[type="datetime-local"],
.ramtech-ui input[type="email"],
.ramtech-ui input[type="number"],
.ramtech-ui input[type="password"],
.ramtech-ui input[type="search"],
.ramtech-ui input[type="text"],
.ramtech-ui input[type="time"],
.ramtech-ui select,
.ramtech-ui textarea {
    background: var(--ramtech-ui-bg);
    border: 1px solid var(--ramtech-ui-line);
    border-radius: var(--ramtech-ui-radius-sm);
    box-shadow: none;
    color: var(--ramtech-ui-ink);
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    line-height: 1.2;
    margin-top: 0;
    max-width: 100%;
    min-height: 0;
    padding: 0 16px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.ramtech-ui input[type="date"],
.ramtech-ui input[type="datetime-local"],
.ramtech-ui input[type="time"],
.ramtech-ui select {
    line-height: 44px;
}

.ramtech-ui select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ramtech-ui-ink-soft) 50%), linear-gradient(135deg, var(--ramtech-ui-ink-soft) 50%, transparent 50%);
    background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
    background-repeat: no-repeat;
    background-size: 5px 5px;
    padding-right: 40px;
}

.ramtech-ui textarea {
    height: auto;
    min-height: 104px;
    padding: 14px 16px;
}

.ramtech-ui input:hover,
.ramtech-ui select:hover,
.ramtech-ui textarea:hover {
    border-color: var(--ramtech-ui-line);
}

.ramtech-ui input:focus,
.ramtech-ui select:focus,
.ramtech-ui textarea:focus {
    background: var(--ramtech-ui-paper);
    border-color: var(--ramtech-ui-accent);
    box-shadow: none;
    outline: none;
}

.ramtech-ui input::placeholder {
    color: #aab1b9;
}

.ramtech-ui input[type="checkbox"],
.ramtech-ui input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: var(--ramtech-ui-paper);
    border: 1.5px solid var(--ramtech-ui-ink-soft);
    box-shadow: none;
    color: var(--ramtech-ui-paper);
    cursor: pointer;
    display: inline-grid;
    flex: 0 0 auto;
    height: 22px;
    margin: 0;
    min-height: 22px;
    min-width: 22px;
    place-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    vertical-align: middle;
    width: 22px;
}

.ramtech-ui label:has(> input[type="checkbox"]),
.ramtech-ui label:has(> input[type="radio"]) {
    align-items: center;
    color: var(--ramtech-ui-ink);
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    letter-spacing: 0;
    line-height: 1.4;
    min-height: 22px;
    padding-left: 32px;
    position: relative;
    text-transform: none;
}

.ramtech-ui input[type="checkbox"] {
    border-radius: 6px;
}

.ramtech-ui input[type="radio"] {
    border-radius: 50%;
}

.ramtech-ui input[type="checkbox"]::before,
.ramtech-ui input[type="radio"]::before {
    content: "";
    display: block;
    transform: scale(0);
    transition: transform 0.12s ease-in-out;
}

.ramtech-ui input[type="checkbox"]::before {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    height: 10px;
    margin-top: -2px;
    transform: rotate(45deg) scale(0);
    width: 5px;
}

.ramtech-ui input[type="radio"]::before {
    background: currentColor;
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.ramtech-ui input[type="checkbox"]:checked,
.ramtech-ui input[type="radio"]:checked {
    background: var(--ramtech-ui-accent);
    border-color: var(--ramtech-ui-accent);
}

.ramtech-ui input[type="checkbox"]:checked::before {
    transform: rotate(45deg) scale(1);
}

.ramtech-ui input[type="radio"]:checked::before {
    transform: scale(1);
}

@supports selector(label:has(> input[type="checkbox"])) {
    .ramtech-ui input[type="checkbox"],
    .ramtech-ui input[type="radio"] {
        height: 1px;
        opacity: 0;
        position: absolute;
        width: 1px;
    }

    .ramtech-ui input[type="checkbox"]::before,
    .ramtech-ui input[type="radio"]::before {
        content: none;
    }

    .ramtech-ui label:has(> input[type="checkbox"])::before,
    .ramtech-ui label:has(> input[type="radio"])::before {
        background: var(--ramtech-ui-paper);
        border: 1.5px solid var(--ramtech-ui-ink-soft);
        box-shadow: none;
        content: "";
        height: 22px;
        left: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: background 0.2s ease, border-color 0.2s ease;
        width: 22px;
    }

    .ramtech-ui label:has(> input[type="checkbox"])::before {
        border-radius: 6px;
    }

    .ramtech-ui label:has(> input[type="radio"])::before {
        border-radius: 50%;
    }

    .ramtech-ui label:has(> input[type="checkbox"])::after,
    .ramtech-ui label:has(> input[type="radio"])::after {
        content: "";
        left: 11px;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.12s ease-in-out;
    }

    .ramtech-ui label:has(> input[type="checkbox"])::after {
        border: solid currentColor;
        border-width: 0 2px 2px 0;
        color: var(--ramtech-ui-paper);
        height: 10px;
        margin-top: -1px;
        transform: translate(-50%, -50%) rotate(45deg) scale(0);
        width: 5px;
    }

    .ramtech-ui label:has(> input[type="radio"])::after {
        background: currentColor;
        border-radius: 50%;
        color: var(--ramtech-ui-paper);
        height: 10px;
        width: 10px;
    }

    .ramtech-ui label:has(> input[type="checkbox"]:checked)::before,
    .ramtech-ui label:has(> input[type="radio"]:checked)::before {
        background: var(--ramtech-ui-accent);
        border-color: var(--ramtech-ui-accent);
    }

    .ramtech-ui label:has(> input[type="checkbox"]:checked)::after {
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }

    .ramtech-ui label:has(> input[type="radio"]:checked)::after {
        transform: translate(-50%, -50%) scale(1);
    }

    .ramtech-ui label:has(> input[type="checkbox"]:focus-visible)::before,
    .ramtech-ui label:has(> input[type="radio"]:focus-visible)::before {
        outline: 2px solid var(--ramtech-ui-accent);
        outline-offset: 3px;
    }
}

.ramtech-ui-badge {
    align-items: center;
    background: var(--ramtech-ui-accent-soft);
    border-radius: 999px;
    color: var(--ramtech-ui-accent-deep);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 6px;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 8px 12px;
    text-transform: uppercase;
}

.ramtech-ui-badge--ink {
    background: var(--ramtech-ui-ink);
    color: var(--ramtech-ui-paper);
}

.ramtech-ui-badge--good {
    background: var(--ramtech-ui-good-bg);
    color: var(--ramtech-ui-good);
}

.ramtech-ui-badge--neutral {
    background: var(--ramtech-ui-row-alt);
    border: 1px solid var(--ramtech-ui-line);
    color: var(--ramtech-ui-ink-soft);
}

.ramtech-ui-badge--accent {
    background: var(--ramtech-ui-accent);
    border: 1px solid var(--ramtech-ui-accent);
    color: var(--ramtech-ui-paper);
}

.ramtech-ui-badge--warning {
    background: #fff4df;
    border: 1px solid #ffdba6;
    color: #a85f00;
}

.ramtech-ui-badge--danger {
    background: #fde7e3;
    border: 1px solid #f6b5a9;
    color: #b3261e;
}

.ramtech-ui-badge--out {
    background: var(--ramtech-ui-bg);
    border: 1px solid var(--ramtech-ui-line);
    color: var(--ramtech-ui-ink-soft);
}

.ramtech-ui-stat {
    padding: 24px;
}

.ramtech-ui-stat strong {
    color: var(--ramtech-ui-ink);
    display: block;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.ramtech-ui-stat span {
    color: var(--ramtech-ui-ink-soft);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 12px 0 0;
    text-transform: uppercase;
}

.ramtech-ui-stat small {
    color: var(--ramtech-ui-ink-soft);
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.ramtech-ui-toolbar {
    align-items: flex-end;
    background: var(--ramtech-admin-toolbar-bg, #f3f5f6);
    border: 1px solid var(--ramtech-ui-line);
    border-radius: var(--ramtech-ui-radius);
    box-shadow: var(--ramtech-ui-shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding: 16px;
}

.ramtech-ui-toolbar-group {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ramtech-ui-table-wrap,
.ramtech-ui-data-view {
    overflow: hidden;
}

.ramtech-ui-table-wrap {
    background: var(--ramtech-ui-paper);
    border: 1px solid var(--ramtech-ui-line);
    border-radius: var(--ramtech-ui-radius);
    box-shadow: var(--ramtech-ui-shadow-sm);
}

.ramtech-ui-data-view .ramtech-ui-table-wrap {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ramtech-ui table,
.ramtech-ui .widefat {
    border: 0;
    border-collapse: collapse;
    color: var(--ramtech-ui-ink);
    margin: 0;
    width: 100%;
}

.ramtech-ui .widefat {
    box-shadow: none;
}

.ramtech-ui .widefat th,
.ramtech-ui .widefat td {
    border-bottom: 1px solid var(--ramtech-ui-line);
    padding: 16px 24px;
    vertical-align: middle;
}

.ramtech-ui table.widefat > tbody > tr > td,
.ramtech-ui table.widefat.striped > tbody > tr > td {
    background: var(--ramtech-ui-paper) !important;
    background-color: var(--ramtech-ui-paper) !important;
}

.ramtech-ui table.widefat > thead > tr > th,
.ramtech-ui table.widefat > thead > tr > td {
    background: var(--ramtech-ui-table-head-bg, #566270) !important;
    background-color: var(--ramtech-ui-table-head-bg, #566270) !important;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.ramtech-ui table.widefat > tbody > tr:nth-child(even) > td,
.ramtech-ui table.widefat.striped > tbody > tr:nth-child(even) > td {
    background: var(--ramtech-ui-row-alt) !important;
    background-color: var(--ramtech-ui-row-alt) !important;
}

.ramtech-ui table.widefat > tbody > tr:hover > td,
.ramtech-ui table.widefat.striped > tbody > tr:hover > td {
    background: var(--ramtech-ui-row-hover) !important;
    background-color: var(--ramtech-ui-row-hover) !important;
}

.ramtech-ui .widefat tbody tr:last-child td {
    border-bottom: 0;
}

.ramtech-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    padding: 0;
}

.ramtech-pagination .page-numbers {
    align-items: center;
    background: var(--ramtech-ui-paper) !important;
    border: 1.5px solid var(--ramtech-ui-line-strong) !important;
    border-radius: 999px;
    color: var(--ramtech-ui-ink-soft) !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    line-height: 1;
    min-width: 36px;
    padding: 0 14px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ramtech-pagination .page-numbers.prev,
.ramtech-pagination .page-numbers.next {
    min-width: 74px;
}

.ramtech-pagination .page-numbers:hover,
.ramtech-pagination .page-numbers:focus,
.ramtech-pagination .page-numbers.current {
    background: var(--ramtech-ui-accent) !important;
    border-color: var(--ramtech-ui-accent) !important;
    color: var(--ramtech-ui-paper) !important;
}

.ramtech-pagination .page-numbers.dots {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--ramtech-ui-ink-soft) !important;
    min-width: 24px;
    padding: 0 4px;
}

.ramtech-ui-tabs {
    background: var(--ramtech-ui-bg);
    border: 1px solid var(--ramtech-ui-line);
    border-radius: 999px;
    display: flex;
    gap: 4px;
    padding: 4px;
    width: fit-content;
}

.ramtech-ui-tabs a,
.ramtech-ui-tabs button {
    background: var(--ramtech-ui-paper);
    border: 1.5px solid var(--ramtech-ui-line-strong);
    border-radius: 999px;
    color: var(--ramtech-ui-ink-soft);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    text-decoration: none;
}

.ramtech-ui-tabs .is-active,
.ramtech-ui-tabs .active,
.ramtech-ui-tabs a:hover,
.ramtech-ui-tabs button:hover {
    background: var(--ramtech-ui-accent);
    border-color: var(--ramtech-ui-accent);
    box-shadow: none;
    color: var(--ramtech-ui-paper);
}

.ramtech-ui-alert {
    align-items: flex-start;
    background: var(--ramtech-ui-accent-soft);
    border: 1px solid rgba(231, 64, 17, 0.2);
    border-radius: var(--ramtech-ui-radius);
    color: var(--ramtech-ui-accent-deep);
    display: flex;
    font-size: 14px;
    gap: 16px;
    line-height: 1.55;
    padding: 20px 24px;
}

.ramtech-ui-alert--success,
.ramtech-admin-notice--success {
    background: var(--ramtech-ui-paper);
    border-color: var(--ramtech-ui-line);
    box-shadow: var(--ramtech-ui-shadow-sm);
    color: var(--ramtech-ui-ink);
}

.ramtech-ui-alert-icon {
    align-items: center;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 800;
    height: 22px;
    justify-content: center;
    line-height: 1;
    margin-top: 2px;
    width: 22px;
}

.ramtech-ui-alert strong {
    display: block;
    font-size: 14.5px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.ramtech-ui-alert p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.ramtech-ui-data-head {
    align-items: flex-start;
    background: var(--ramtech-ui-data-head-bg, #566270);
    border-bottom: 1px solid var(--ramtech-ui-data-head-bg, #566270);
    border-radius: calc(var(--ramtech-ui-radius) - 1px) calc(var(--ramtech-ui-radius) - 1px) 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 24px;
}

.ramtech-ui-data-title h2,
.ramtech-ui-data-title h3 {
    color: var(--ramtech-ui-paper);
    font-size: 22px;
    margin: 0 0 6px;
}

.ramtech-ui-data-title p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.ramtech-ui-data-foot {
    align-items: center;
    background: #fafbfc;
    border-top: 1px solid var(--ramtech-ui-line);
    color: var(--ramtech-ui-ink-soft);
    display: flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: space-between;
    padding: 18px 24px;
}

.ramtech-detail-row {
    border-top: 1px solid var(--ramtech-ui-line);
    padding: 12px 0;
}

.ramtech-detail-row:first-of-type {
    border-top: 0;
}

.ramtech-detail-row span {
    color: var(--ramtech-ui-ink-soft);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ramtech-detail-row strong {
    color: var(--ramtech-ui-ink);
    display: block;
    font-size: 15px;
    margin-top: 3px;
}

.ramtech-detail-row small {
    color: var(--ramtech-ui-ink-soft);
    display: block;
    margin-top: 4px;
}

@media (max-width: 780px) {
    .ramtech-ui-page-head,
    .ramtech-ui-header,
    .ramtech-ui-toolbar,
    .ramtech-ui-data-head {
        display: block;
    }

    .ramtech-ui-toolbar-group {
        margin-top: 12px;
    }
}
