.menu-sidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.btn-menu {
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    text-align: left;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: block;
    width: 100%;
    text-decoration: none;
}

.btn-menu:hover, 
.btn-menu.active {
    background-color: #952B32 !important;
    color: #fff;
    border-color: #952B32;
}

.menu-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.menu-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-body {
    padding: 15px;
    text-align: center;
}

.menu-card-title {
    color: #952B32;
    font-weight: bold;
    margin: 0;
}

.menu-header {
    margin-bottom: 30px;
}

.menu-title {
    color: #952B32;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.menu-description {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.menu-description h3 {
    color: #952B32;
    margin-bottom: 15px;
}

.menu-description p {
    color: #666;
    line-height: 1.6;
}