
.rrg-recipe-card {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.rrg-recipe-image {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
}

.rrg-recipe-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.rrg-recipe-content {
    padding: 30px;
}

.rrg-recipe-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    text-align: center;
}

.rrg-recipe-ingredients h4,
.rrg-recipe-steps h4 {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin: 20px 0 10px 0;
}

.rrg-recipe-ingredients ul {
    list-style: disc;
    padding-left: 25px;
    margin: 10px 0;
}

.rrg-recipe-ingredients li {
    margin: 8px 0;
    color: #666;
    line-height: 1.6;
}

.rrg-recipe-steps p {
    color: #666;
    line-height: 1.8;
    margin: 10px 0;
}

.rrg-recipe-actions {
    padding: 0 30px 30px 30px;
    text-align: center;
}

.rrg-refresh-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rrg-refresh-button:hover {
    background: #005177;
}

.rrg-refresh-button:active {
    transform: scale(0.98);
}

.rrg-no-recipes {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .rrg-recipe-card {
        margin: 10px;
    }
    
    .rrg-recipe-content {
        padding: 20px;
    }
    
    .rrg-recipe-title {
        font-size: 24px;
    }
    
    .rrg-recipe-actions {
        padding: 0 20px 20px 20px;
    }
}
