/* Common Styles for Inline Elements */

/* Restaurant logo styles */
.restaurant-logo-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.restaurant-logo-medium {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.restaurant-logo-large {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

/* Restaurant icon placeholder */
.restaurant-icon-small {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.restaurant-icon-medium {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* Menu item image styles */
.menu-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item-image-large {
    max-height: 200px;
}

/* QR code styles */
.qr-code-display {
    max-width: 200px;
}

/* Progress bar styles */
.progress-thin {
    height: 4px;
    border-radius: 0;
}

/* Category description styles */
.category-description {
    font-size: 0.9rem;
    font-weight: normal;
}

/* Icon sizes */
.icon-large {
    font-size: 4rem;
}

.icon-medium {
    font-size: 3rem;
}

.icon-small {
    font-size: 2rem;
} 