/* Basis-Styling für Rezepte Plugin */
.rezepte-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.rezept-karte {
    border: 1px solid #ccc;
    padding: 10px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 2px 2px 6px #aaa;
}
.rezept-karte img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.rezept-buttons {
    margin-top: 20px;
}
.rezept-buttons button,
.rezept-buttons .pdf-button {
    padding: 10px 15px;
    margin-right: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}
.rezept-buttons button:hover,
.rezept-buttons .pdf-button:hover {
    background-color: #005177;
}

@media print {
    body {
        font-family: Arial, sans-serif;
        background: white;
        color: black;
    }

    .rezept-buttons, .rezept-buttons * {
        display: none !important;
    }

    header, footer, nav, .site-header, .site-footer {
        display: none !important;
    }

    .rezept-einzelansicht {
        margin: 0 auto;
        max-width: 800px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

.bewertung-formular {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}
.bewertung-formular .stern.aktiv,
.bewertung-formular .stern:hover,
.bewertung-formular .stern:hover ~ .stern {
    color: gold;
}
.bewertung-anzeige {
    margin: 10px 0;
    font-weight: bold;
}

.rezept-filter-form {
    margin-bottom: 20px;
}
.rezept-filter-form input,
.rezept-filter-form select,
.rezept-filter-form button {
    margin-right: 10px;
    padding: 8px;
    border-radius: 5px;
}

.rezepte-delete-button {
    border-radius: 8px;
    padding: 6px 12px;
    background: #c00;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
