.body-user {
    background-color: var(--color-5);
}

.user-nav {
    background: var(--color-0);
    padding: 1rem 0;
}

.user-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-nav img {
    height: 30px;
}

.user-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.user-nav a {
    color: var(--color-revers);
    font-weight: 500;
}

.user-nav a.active {
    text-decoration: underline;
}

.user-table {
    overflow: hidden;
}
.user-table table {
    width: 100%;
    border-collapse: collapse;
}
.user-table table tr:first-child {
    border-top: none;
}
.user-table table tr {
    border-bottom: 1px solid var(--color-5-dark);
}
.user-table table tr:hover {
    border: 2px solid var(--color-1);
    cursor: pointer;
}
.user-table table th[scope="row"] {
    width: 50%;
    text-align: left;
    font-weight: 100;
    padding: 1rem;
}
.user-table table td {
    font-weight: bold;
}
.user-table table td {
    padding: 1rem;
}

.user-content section {
    margin-bottom: 2rem;
}
.user-content .section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.05rem;
    margin-bottom: 2rem;
}

.products-grid .product-draft .action {
    display: none !important;
}

.products-grid.is-list .product-card .img {
    flex: 0 0 100px;
}

@media (max-width: 768px) {
    .products-grid.is-list .product-card .meta dl div:not(:first-child) {
        display: none;
    }
}
