/* Custom styles for Airfryer Recipes */
.recipe {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.h3-blue {
    color: #000;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
    font-size: 1.5rem;
	
	background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 5px solid #28a745;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Nutrition Table styling */
.nutrition-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    border-left: 5px solid #28a745;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.nutrition-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: #1e7e34;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table th, .nutrition-table td {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    text-align: left;
}

.nutrition-table th {
    font-weight: 600;
    color: #495057;
    width: 40%;
}

.nutrition-table td {
    color: #212529;
    font-weight: 500;
}

.nutrition-table tr:last-child th, 
.nutrition-table tr:last-child td {
    border-bottom: none;
}

/* FAQ styling */
.faq-container {
    margin-top: 24px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.2s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    display: block;
}

.faq-answer {
    color: #555;
    font-size: 0.95rem;
}
