#meindesk-category-tree {
width: 100%;
}
.category-list-wrapper {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center; margin: auto;
}
.category-card {
cursor: pointer;
position: relative;
border-radius: 12px;
overflow: hidden;
flex: 1 1 270px;
max-width: 270px;
width:100%;
transition: all 0.3s ease;
}
@media (max-width: 600px) {
.category-card {
max-width: 100%;
flex-basis: 100%;
}
}
.category-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.category-card:hover {
transform: scale(1.05);
}
.category-card h3 {     display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: rgba(255, 124, 170, 1);
margin: 0;
text-align: center;
font-size: 1.575rem;
font-weight: 600;
user-select: none;
transition: background-color 0.3s ease;
}
.category-card:hover h3 { }
.back-button {
background: #333;
color: #fff;
padding: 8px 16px;
border: none;
border-radius: 8px;
margin-bottom: 12px;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s ease;
}
.back-button:hover {
background: #555;
}