/* Basic styling for frontend & admin glimpses */
.rp-recipe, .rp-card, .rp-recipes-grid {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.rp-recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.rp-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    text-align: left;
}

.rp-card-thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.rp-card-title {
    font-size: 1.05rem;
    margin: 10px 0;
}

.rp-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.rp-meta span {
    display: inline-block;
    margin-right: 10px;
    background: #fafafa;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #f0f0f0;
}

.rp-ingredients, .rp-instructions {
    margin-top: 12px;
}

.rp-stars button {
    border: none;
    background: transparent;
    font-size: 1.25rem;
    color: #d0d0d0;
    cursor: pointer;
    padding: 4px;
}
.rp-stars button:hover, .rp-stars button.active {
    color: #ffb400;
}
.rp-actions {
    margin-top: 12px;
}
.rp-favorite, .rp-print {
    padding: 8px 12px;
    background: #ff7043;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 8px;
}
.rp-favorite:hover, .rp-print:hover { opacity: 0.95; }
.rp-pagination { margin-top: 18px; }

.rp-form input, .rp-form textarea, .rp-form select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 12px;
}
