/* Entry list */
.dashboard-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.dashboard-quick-card {
    position: relative;
    display: grid;
    align-content: end;
    gap: .3rem;
    padding: 1rem 2.6rem 1rem 1rem;
    overflow: hidden;
    border: 1px solid var(--color-ink);
    background: var(--color-surface);
    color: var(--color-ink);
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.dashboard-quick-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--color-accent);
    content: '';
}

.dashboard-quick-card strong {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.dashboard-quick-card > span:not(.dashboard-quick-arrow) {
    color: var(--color-muted);
    font-size: .8rem;
}

.dashboard-quick-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.1rem;
}

.dashboard-quick-card:hover,
.dashboard-quick-card:focus-visible {
    background: var(--color-ink);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.dashboard-quick-card:hover > span:not(.dashboard-quick-arrow),
.dashboard-quick-card:focus-visible > span:not(.dashboard-quick-arrow) {
    color: #fff;
}

.dashboard-agent-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}

.dashboard-agent-actions .btn {
    display: grid;
    min-height: 3.25rem;
    place-items: center;
    font-size: 1.05rem;
}

.dashboard-agent-actions .btn:not(:hover):not(:focus-visible),
.status-filter .btn:not(.btn-dark):not(:hover):not(:focus-visible) {
    background-color: #fff;
}

.dashboard-invoice-table th,
.dashboard-invoice-table td {
    vertical-align: middle;
}

.status-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: fit-content;
    max-width: 100%;
}

.status-filter .btn {
    width: auto;
}

.entry-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
}

.entry-table-wrap .table > :not(caption) > * > * {
    padding: 1rem;
}

.submitted-entry-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

.submitted-entry-table th,
.submitted-entry-table td {
    padding: 0.7rem 0.45rem !important;
    overflow-wrap: anywhere;
    vertical-align: middle;
}

.submitted-entry-table th {
    font-size: 0.68rem;
    line-height: 1.25;
    white-space: normal;
}

.submitted-entry-table td {
    font-size: 0.78rem;
}

.submitted-entry-table th:nth-child(1),
.submitted-entry-table td:nth-child(1),
.submitted-entry-table th:nth-child(2),
.submitted-entry-table td:nth-child(2) { width: 7%; }
.submitted-entry-table th:nth-child(3),
.submitted-entry-table td:nth-child(3) { width: 13%; }
.submitted-entry-table th:nth-child(4),
.submitted-entry-table td:nth-child(4) { width: 14%; }
.submitted-entry-table th:nth-child(5),
.submitted-entry-table td:nth-child(5),
.submitted-entry-table th:nth-child(6),
.submitted-entry-table td:nth-child(6) { width: 7%; }
.submitted-entry-table th:nth-child(n+7):nth-child(-n+10),
.submitted-entry-table td:nth-child(n+7):nth-child(-n+10) { width: 6%; }
.submitted-entry-table th:nth-child(11),
.submitted-entry-table td:nth-child(11) { width: 8%; }
.submitted-entry-table th:nth-child(12),
.submitted-entry-table td:nth-child(12) { width: 13%; }

.submitted-entry-table .btn {
    padding: 0.3rem 0.45rem;
    font-size: 0.7rem;
}

.entry-title {
    color: var(--color-ink);
    font-weight: 700;
    text-decoration: none;
}

.entry-title:hover {
    color: var(--color-accent-dark);
}

.entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.empty-state {
    padding: clamp(2.5rem, 8vw, 5rem) 1rem;
}

/* Entry detail */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.detail-grid > div {
    min-width: 0;
}

.detail-grid-wide {
    grid-column: 1 / -1;
}

.detail-grid dt {
    margin-bottom: 0.25rem;
    color: var(--color-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.detail-grid dd {
    overflow-wrap: anywhere;
}

/* Entry form */
.form-section {
    margin-bottom: var(--section-gap);
    padding: clamp(1.25rem, 4vw, 2.25rem);
}

.form-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.form-section-number {
    display: inline-grid;
    flex: 0 0 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--color-ink);
    background: var(--color-accent);
    border-radius: 0;
    font-family: var(--font-condensed);
    font-size: 1.15rem;
    font-weight: 600;
    place-items: center;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.subcategory-grid.has-error {
    padding: 0.25rem;
    border: 1px solid var(--color-danger);
    border-radius: var(--radius-md);
}

.subcategory-option {
    padding: 1rem;
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.subcategory-option:has(.form-check-input:checked) {
    background: var(--color-brand-100);
    border-color: var(--color-ink);
    box-shadow: inset 4px 0 0 var(--color-accent);
}

.subcategory-option[hidden] {
    display: none;
}

.subcategory-option .form-check-label span {
    display: block;
    margin-top: 0.2rem;
    color: var(--color-muted);
    font-size: 0.875rem;
}

.subcategory-option .subcategory-price {
    color: var(--color-ink);
    font-weight: 700;
}

.entry-price-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    color: #fff;
    background: var(--color-ink);
    border: 1px solid var(--color-ink);
    border-radius: var(--radius-md);
}

.entry-price-review .text-secondary {
    color: #c9c6c0 !important;
}

.entry-price-review > strong {
    color: var(--color-accent);
}

.entry-form-fields {
    min-width: 0;
    padding: 0;
    border: 0;
}

.entry-form-fields:disabled {
    opacity: 0.78;
}

.word-counter {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.word-counter.is-over-limit {
    color: var(--color-danger);
    font-weight: 700;
}

.credit-list {
    display: grid;
    gap: 1rem;
}

.credit-row {
    display: grid;
    grid-template-columns: minmax(10rem, 1fr) minmax(12rem, 1.4fr) auto;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.form-actions {
    position: sticky;
    z-index: 10;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 0;
    background: linear-gradient(to bottom, transparent, var(--color-canvas) 25%);
}

/* Secure entry uploads */
.thumbnail-layout {
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(260px, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.thumbnail-preview {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px dashed var(--bs-border-color);
    border-radius: 0;
    background: var(--color-surface-muted);
    color: var(--bs-secondary-color);
}

.thumbnail-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-upload-control {
    position: absolute;
    inset: auto 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 2.75rem;
    padding: .65rem 1rem;
    border: 1px solid var(--color-ink);
    background: rgba(255, 255, 255, .94);
    color: var(--color-ink);
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.thumbnail-upload-control:hover,
.thumbnail-upload-control:focus-within {
    background: var(--color-accent);
}

.thumbnail-upload-form.is-uploading .thumbnail-preview::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .62);
    color: #fff;
    content: 'Saving…';
    font-weight: 700;
}

.thumbnail-upload-form.is-uploading .thumbnail-upload-control {
    visibility: hidden;
}

.entry-upload-summary .detail-grid {
    grid-template-columns: 1fr;
}

.project-file-grid,
.selected-file-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 1rem;
}

.project-file-card,
.selected-file-preview {
    display: grid;
    gap: .65rem;
    min-width: 0;
    padding: .75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

.project-file-card {
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

.project-file-card[draggable="true"] {
    cursor: grab;
}

.project-file-card.is-dragging {
    opacity: .45;
    cursor: grabbing;
    outline: 2px solid var(--color-accent);
    transform: scale(.96) rotate(-1deg);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .14);
}

.project-file-card.is-drop-target {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(244, 217, 0, .2);
}

.project-file-card.is-dropped {
    animation: project-file-dropped .4s ease;
}

.project-file-drag-handle {
    position: absolute;
    z-index: 2;
    top: .95rem;
    right: .95rem;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--color-ink);
    font-weight: 800;
}

.entry-upload-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

@keyframes project-file-dropped {
    0% { transform: scale(.97); box-shadow: 0 0 0 0 rgba(244, 217, 0, .45); }
    55% { transform: scale(1.02); box-shadow: 0 0 0 .5rem rgba(244, 217, 0, .12); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 217, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .project-file-card {
        transition: none;
    }

    .project-file-card.is-dropped {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .dashboard-quick-grid,
    .dashboard-agent-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-invoice-summary .entry-table-wrap,
    .dashboard-member-card .entry-table-wrap {
        overflow-x: auto;
    }

    .dashboard-invoice-table,
    .dashboard-member-card .table {
        min-width: 760px;
    }
}

@media (max-width: 767.98px) {
    .checkout-discount-controls {
        grid-template-columns: 1fr;
    }

    .payment-checkout-heading,
    .payment-provider-panel,
    .payment-testing-link {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-checkout-total {
        white-space: normal;
    }

    .payment-method-switcher > .btn,
    .payment-provider-panel form,
    .payment-provider-panel form .btn,
    .payment-testing-link .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .dashboard-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-quick-grid,
    .dashboard-agent-actions {
        grid-template-columns: 1fr;
    }

}

.project-file-media,
.selected-file-preview > img,
.project-file-document {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: calc(var(--radius-md) - .25rem);
    background: var(--color-canvas);
}

.project-file-media img,
.selected-file-preview > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-file-document {
    color: var(--color-ink);
    font-weight: 800;
}

.selected-file-preview small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected-file-details {
    min-width: 0;
}

.selected-file-status {
    display: block;
    margin-top: .2rem;
    color: var(--color-ink);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-order-card {
    max-width: 820px;
}

.payment-checkout-card {
    max-width: none;
}

.payment-checkout-heading,
.payment-provider-panel,
.payment-testing-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.payment-checkout-heading {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-line);
}

.payment-checkout-total {
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 400;
    white-space: nowrap;
}

.payment-checkout-total small {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
}

.payment-method-switcher {
    display: grid;
    gap: 1rem;
    padding-block: 1.5rem;
}

.payment-method-switcher > .btn {
    justify-self: end;
}

.payment-provider-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #f7f7f5;
    border: 1px solid var(--color-line);
    border-top: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
}

.payment-provider-panel > div:nth-child(2) {
    flex: 1 1 auto;
}

.payment-provider-mark {
    display: grid;
    width: 5.5rem;
    min-height: 3.4rem;
    place-items: center;
    color: #fff;
    background: #111;
    border-radius: 0.45rem;
    font-size: 1rem;
    font-weight: 800;
}

.payment-provider-paypal .payment-provider-mark {
    color: #003087;
    background: #ffc439;
}

.payment-provider-test .payment-provider-mark {
    color: #111;
    background: var(--color-accent);
}

.payment-paypal-button {
    color: #111;
    background: #ffc439;
    border-color: #ffc439;
    font-weight: 700;
}

.payment-paypal-button:hover,
.payment-paypal-button:focus-visible {
    color: #111;
    background: #f2ba36;
    border-color: #f2ba36;
}

.payment-testing-link {
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-line);
}
.upload-dropzone {
    display: grid;
    min-height: 9rem;
    padding: 1.5rem;
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface-muted);
    cursor: pointer;
    place-content: center;
    text-align: center;
}

.upload-dropzone-copy {
    display: grid;
    gap: .2rem;
}

.upload-dropzone .selected-file-preview-grid {
    width: 100%;
}

.upload-dropzone.has-pending-files {
    place-content: stretch;
}

.upload-dropzone.has-pending-files .upload-dropzone-copy {
    margin-bottom: 1rem;
}

.upload-dropzone:hover,
.upload-dropzone:focus-within {
    border-color: var(--color-ink);
    background: var(--color-brand-100);
}

.material-list,
.checkout-list {
    display: grid;
    gap: 0.75rem;
}

.material-row,
.checkout-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.material-row > :first-child {
    min-width: 0;
}

/* Checkout review */
.checkout-heading,
.checkout-entry-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-entry-actions {
    flex: 0 0 auto;
}

.checkout-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.4rem;
}

.checkout-summary dd {
    margin: 0;
}

.checkout-summary-sticky {
    position: sticky;
    top: 6rem;
}

.checkout-discount-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem;
}

.checkout-discount-controls .form-control[readonly] {
    color: var(--color-ink);
    background: var(--color-surface-muted);
}

.checkout-summary [data-summary-discount-row] {
    color: var(--color-success, #198754);
}

.checkout-summary [data-summary-discount-code] {
    display: block;
    color: var(--color-text-muted, #687085);
    font-weight: 500;
}

.addon-grid,
.payment-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.addon-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    padding: 1.25rem;
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.checkout-addon-info {
    width: fit-content;
    padding: 0 0 .2rem;
    color: var(--color-brand-700);
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
    text-align: left;
}

.checkout-addon-info:hover,
.checkout-addon-info:focus-visible {
    color: var(--color-ink);
}

.checkout-addon-modal .modal-content {
    border: 0;
    border-top: 5px solid var(--color-accent);
    border-radius: var(--radius-md);
}

.checkout-addon-modal .modal-header,
.checkout-addon-modal .modal-footer {
    padding: 1.25rem 1.5rem;
}

.checkout-addon-modal .modal-body {
    padding: 1.5rem;
}

.entry-payment-progress ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    margin: 0;
    overflow: hidden;
    list-style: none;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.entry-payment-progress li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .65rem;
    min-width: 0;
    padding: 1rem;
    border-right: 1px solid var(--color-border);
}

.entry-payment-progress li:last-child {
    border-right: 0;
}

.entry-payment-progress li > span {
    color: var(--color-muted);
    font-size: .8rem;
    font-weight: 700;
}

.entry-payment-progress li > strong {
    min-width: 0;
    font-size: .9rem;
}

.entry-payment-progress .is-complete > span,
.entry-payment-progress .is-current > span {
    color: var(--color-ink);
}

.entry-payment-progress .is-complete {
    box-shadow: inset 0 -4px 0 var(--color-accent);
}

.entry-payment-progress .is-current {
    color: #fff;
    background: var(--color-ink);
    box-shadow: inset 0 -4px 0 var(--color-accent);
}

.entry-payment-progress .is-current > span {
    color: var(--color-accent);
}

.payment-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.payment-fact-grid > div {
    min-width: 0;
    padding: 1rem;
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.payment-fact-grid dt {
    margin-bottom: .35rem;
    color: var(--color-muted);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-fact-grid dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

.payment-complete-hero {
    padding: clamp(2rem, 5vw, 4rem);
    background: #fff;
    border-top: 5px solid var(--color-accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.payment-choice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.payment-choice:has(input:checked) {
    background: var(--color-brand-100);
    border-color: var(--color-ink);
    box-shadow: inset 4px 0 0 var(--color-accent);
}

.payment-choice input {
    margin-top: 0.25rem;
}

.payment-choice small {
    display: block;
    margin-top: 0.25rem;
    color: var(--color-muted);
}

.checkout-removed {
    border-style: dashed;
}

.checkout-total {
    margin-top: 0.5rem;
    padding-top: 1rem !important;
    border-top: 1px solid var(--color-border);
    font-size: 1.1rem;
    font-weight: 700;
}

.checkout-summary-sticky {
    border-top: 3px solid var(--color-accent);
}

@media (max-width: 767.98px) {
    .thumbnail-layout {
        grid-template-columns: 1fr;
    }
    .subcategory-grid,
    .detail-grid,
    .addon-grid,
    .payment-choice-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid-wide {
        grid-column: auto;
    }

    .credit-row {
        grid-template-columns: 1fr;
    }

    .credit-row .btn {
        justify-self: start;
    }

    .entry-upload-footer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .checkout-heading,
    .material-row,
    .checkout-entry,
    .checkout-entry-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .checkout-summary-sticky {
        position: static;
    }

    .entry-payment-progress ol,
    .payment-fact-grid {
        grid-template-columns: 1fr;
    }

    .entry-payment-progress li {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .entry-payment-progress li:last-child {
        border-bottom: 0;
    }

    .material-row form .btn,
    .checkout-entry-actions .btn {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .entry-table-wrap {
        overflow: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .entry-table-wrap table,
    .entry-table-wrap tbody {
        display: block;
        width: 100%;
    }

    .entry-table-wrap thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .entry-table-wrap tbody {
        display: grid;
        gap: 1rem;
    }

    .entry-table-wrap tbody tr {
        display: grid;
        width: 100%;
        padding: 1rem;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-card);
    }

    .entry-table-wrap .table > tbody > tr > td {
        display: block;
        width: 100%;
        padding: 0.4rem 0;
        border: 0;
        text-align: left !important;
    }

    .entry-table-wrap .table > tbody > tr > td:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-top: 0.75rem;
    }

    .submitted-entry-table {
        width: 100%;
        min-width: 0;
        table-layout: auto;
    }

    .submitted-entry-table > tbody > tr > td {
        display: grid;
        grid-template-columns: minmax(7.5rem, 38%) minmax(0, 1fr);
        align-items: start;
        gap: 0.75rem;
    }

    .submitted-entry-table td::before {
        content: attr(data-label);
        color: var(--color-muted);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .submitted-entry-table > tbody > tr > td:last-child {
        display: grid;
    }

    .submitted-entry-table td:last-child > div {
        justify-content: flex-start !important;
    }
}
