/* Styling for food items with images */
.food-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.food-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.food-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.food-item strong {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* New class for nutritional comparison container */
.food-comparison {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.food-comparison-header {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e6e6e6;
}

.food-comparison-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: transform 0.2s ease;
}

.food-comparison-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.food-comparison-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
}

.food-comparison-content {
    flex: 1;
}

.food-comparison-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.food-comparison-protein {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    display: inline-block;
    background-color: #ebf5ff;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 6px;
}

/* Styling for formatted text elements */
h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 8px;
}

strong {
    font-weight: 600;
    color: #2c3e50;
}

.list-item {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}

.list-number {
    font-weight: 600;
    color: #3498db;
    margin-right: 5px;
    min-width: 25px;
}

/* Chat message formatting */
.chat-message {
    line-height: 1.6;
    font-size: 16px;
}

.chat-message p {
    margin-bottom: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .food-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .food-image {
        width: 100%;
        height: auto;
        max-height: 200px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .food-comparison-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .food-comparison-image {
        width: 100%;
        height: auto;
        max-height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }
} 