.ohcc-recipe-form, .ohcc-recipe-list {
    max-width: 800px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.ohcc-recipe-form h2, .ohcc-recipe-list h2 { text-align: center; }
.ohcc-recipe-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: 0.3s;
    margin: 15px 0;
}
.ohcc-recipe-card:hover { transform: scale(1.02); }
.ohcc-recipe-card img { width: 100%; border-radius: 10px; }
.ohcc-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}
.ohcc-btn:hover { background: #009688; }
@media (max-width: 600px) {
    .ohcc-recipe-form, .ohcc-recipe-list { padding: 10px; }
}
