.qrmenupro-container {
    @apply max-w-7xl mx-auto p-4;
}

.qrmenupro-menu {
    @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6;
}

.menu-item {
    @apply bg-white rounded-lg shadow-md overflow-hidden transition-transform hover:scale-105;
}

.menu-item-image {
    @apply w-full h-48 object-cover;
}

.menu-item-content {
    @apply p-4;
}

.menu-item-title {
    @apply text-xl font-bold mb-2;
}

.menu-item-description {
    @apply text-gray-600 mb-4;
}

.menu-item-price {
    @apply text-lg font-semibold text-green-600;
}

.menu-category {
    @apply mb-8;
}

.category-title {
    @apply text-2xl font-bold mb-4 pb-2 border-b-2 border-gray-200;
}

.qr-code {
    @apply mx-auto text-center p-4;
} 