.admin .table-wrapper table>thead>tr th, .admin .table-wrapper table>thead>tr th a {
    text-transform: inherit!important;
}

[type="checkbox"]:checked+span:not(.lever):before {
    top: 1px;
    left: 1px;
    width: 7px;
    height: 13px;
}


[type="checkbox"]+span:not(.lever):before, [type="checkbox"]:not(.filled-in)+span:not(.lever):after {
    transition: 0s;
}

[type="checkbox"]:not(.filled-in)+span:not(.lever):after {

    border: 2px solid #5a5a5a !important;
    transform: none;

}

.convenience-status-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0 0 1.5rem;
}

@media (max-width: 1199px) {
    .convenience-status-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .convenience-status-overview {
        grid-template-columns: 1fr;
    }
}

.convenience-status-card {
    background: #fff;
    padding: 1rem 1.15rem 1.1rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}

.convenience-status-card.has-error {
    background: #fef2f2;
    border-color: #fecaca;
}

.convenience-status-title {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.convenience-status-body {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.65rem;
}

.convenience-status-card.has-error .convenience-status-body {
    border-top-color: #fee2e2;
}

.convenience-status-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin: 0 0 0.35rem;
    font-size: 0.875rem;
    color: #334155;
}

.convenience-status-row:last-child {
    margin-bottom: 0;
}

.convenience-status-row--sm {
    font-size: 0.8rem;
}

.convenience-status-row span:last-child,
.convenience-status-row b {
    color: #475569;
    font-weight: 600;
    text-align: right;
}

.convenience-status-row .status-ok {
    color: #10b981;
}

.convenience-status-row .status-error {
    color: #ef4444;
}