.item-container {
    max-width: 95%;
    margin-left: 4rem;
    margin-top: 1rem;
}

.item-title{
    text-align: center;
    font-weight: bold;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .item-container {
        width: 100%;
        margin-left: 0;
    }
    .item-title{
        margin-top: 1rem;
    }
}

table.item-container {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
}

table.item-container thead {
    background: #0d47a1;
    color: #f9fafb;
}
table.item-container th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.user-item, .category-item {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}
.user-item:hover, .category-item:hover {
    background-color: rgb(255, 192, 140);
}

.user-item-red {
    background-color: rgb(255, 136, 106);
}

.user-item-red:hover {
    background-color: rgb(255, 122, 88);
}

.user-item td, .category-item td {
    padding: 1rem;
    vertical-align: middle;
}

.user-item button,
.category-item button {
    padding: 0.35rem 0.75rem;
    margin: 0.15rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #0d47a1;
    cursor: pointer;
    font-size: 0.875rem;
    color: #fff;
}
.user-item button:hover,
.category-item button:hover {
    background: #08367a;
    color: #fff;
    border-color: #111827;
}

.user-item-img {
    max-width: 10rem;
}

.button {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background-color: #0d47a1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    background-color: #08367a;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ol-buttons {
    margin: 1rem;
    list-style: decimal;
}

.ol-buttons li::marker {
    color: #333;
}

.ol-buttons a.button {
    display: inline-block;
    margin-left: 0.4rem;
}

.ol-buttons li:not(:last-child) {
    margin-bottom: 1rem;
}

.category-admin{
    columns: 2;
}

.category-grid-desktop-admin {
    flex-direction: column;
    gap: 1rem;
    width: 95%;
    margin-top: 1rem;
}

.item-container tbody {
    background-color: white;
}

.table-image{
    max-width: 200px;
    max-height: 200px;
}