/* ============================================
   kostenlose-rezepte.eu – Kochbuch Template
   ============================================ */

:root {
    --rot: #c0392b;
    --hellrot: #e74c3c;
    --dunkelbraun: #2c1810;
    --braun: #6b3a2a;
    --beige: #f5e6d3;
    --creme: #fdf6ec;
    --text: #2c2c2c;
    --muted: #888;
    --border: #e8ddd0;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(44,24,16,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: #f9f4ee;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.25;
    color: var(--dunkelbraun);
}

a { color: var(--rot); text-decoration: none; }
a:hover { color: var(--hellrot); }

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--dunkelbraun);
    padding: 7px 0;
    font-size: 12px;
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-links { display: flex; gap: 16px; }
.topbar-links a { color: rgba(255,255,255,0.55); }
.topbar-links a:hover { color: #fff; }
.topbar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 4px 12px;
}
.topbar-search i { color: rgba(255,255,255,0.5); font-size: 12px; }
.topbar-search input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 12px;
    width: 200px;
}
.topbar-search input::placeholder { color: rgba(255,255,255,0.4); }

/* ---- LOGO BAR ---- */
.logo-bar {
    background: var(--creme);
    padding: 16px 0;
    border-bottom: 3px solid var(--rot);
}
.logo-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--dunkelbraun);
    letter-spacing: -0.5px;
}
.logo span { color: var(--rot); }
.tagline { font-size: 12px; color: var(--muted); margin-top: 2px; }
.logo-actions {
    display: flex;
    gap: 20px;
    font-size: 13px;
}
.logo-actions a {
    color: var(--braun);
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo-actions a:hover { color: var(--rot); }

/* ---- NAVIGATION ---- */
.main-nav {
    background: #fff;
    border-bottom: 0.5px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.active > a {
    color: var(--rot);
    border-bottom-color: var(--rot);
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    min-width: 200px;
    z-index: 200;
    box-shadow: 0 8px 32px rgba(44,24,16,0.12);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--text);
    border-radius: 6px;
}
.dropdown a:hover { background: var(--creme); color: var(--rot); }
.dropdown a span { color: var(--muted); font-size: 11px; }
.dropdown-wide {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    min-width: 600px;
    gap: 8px;
}
.has-dropdown:hover .dropdown-wide { display: grid; }
.dd-col {}
.dd-heading {
    font-size: 10px;
    font-weight: 600;
    color: var(--rot);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px 4px;
    font-family: inherit;
}

/* ---- PAGE BODY ---- */
.page-body {
    flex: 1;
    padding: 24px 0 40px;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 24px;
    align-items: start;
}

/* ---- MAIN CONTENT ---- */
.content-main {
    min-width: 0;
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 24px;
}
.content-main h1 {
    font-size: 26px;
    color: var(--dunkelbraun);
    margin-bottom: 12px;
}
.content-main h2 {
    font-size: 20px;
    color: var(--dunkelbraun);
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--beige);
}
.content-main p { margin-bottom: 12px; }
.content-main ul, .content-main ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

/* Rezept-spezifische Styles */
.title div { font-size: 26px; font-family: Georgia, 'Times New Roman', serif; color: var(--dunkelbraun); margin-bottom: 12px; }
.title div h1 { font-size: 26px; }
.huhu {
    background: var(--dunkelbraun);
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    margin: 16px 0 0;
    border-radius: 6px 6px 0 0;
    font-family: inherit;
}
/* group layout - zie onderaan voor de echte definitie */

/* Einkaufsliste Checkboxen */
ul.a { list-style: none; padding: 0; }
ul.a li { padding: 4px 0; font-size: 13px; border-bottom: 0.5px solid #f0e8e0; display: flex; align-items: center; gap: 8px; }
ul.a li input[type="checkbox"] { accent-color: var(--rot); width: 14px; height: 14px; }
ul.a li label { cursor: pointer; }
ul.a li span { color: var(--text); }

/* Breadcrumb */
#bread1, #bread {
    display: inline;
    font-size: 13px;
    color: var(--muted);
}
#bread1 a, #bread a { color: var(--rot); }
#bread1 { margin-bottom: 12px; display: block; }

/* Sterne Bewertung */
.stars { display: inline-block; }

/* Code2 Modul */
.code2_admin { font-family: monospace; font-size: 13px; background: #f8f4f0; padding: 12px; border-radius: 6px; border: 0.5px solid var(--border); }

/* Teaser Block */
.teaser-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--beige);
}

/* ---- SIDEBAR ---- */
.content-sidebar { min-width: 0; }

.sidebar-widget {
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 18px;
}
.widget-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dunkelbraun);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--beige);
    display: flex;
    align-items: center;
    gap: 7px;
}
.widget-title i { color: var(--rot); font-size: 14px; }

/* Suchbox Sidebar */
.search-box { display: flex; gap: 6px; }
.search-box input {
    flex: 1;
    padding: 7px 10px;
    border: 0.5px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    color: var(--text);
    background: #fdf8f4;
}
.search-box input:focus { border-color: var(--rot); }
.search-box button {
    padding: 7px 12px;
    background: var(--rot);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}
.search-box button:hover { background: var(--hellrot); }

/* Mini Rezepte */
.mini-rezepte { list-style: none; }
.mini-rezept-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 0.5px solid #f0e8e0;
    color: var(--text);
}
.mini-rezept-item:last-child { border-bottom: none; }
.mini-rezept-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.mini-rezept-item strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dunkelbraun);
    font-family: inherit;
}
.mini-rezept-item span {
    font-size: 11px;
    color: var(--muted);
}
.mini-rezept-item:hover strong { color: var(--rot); }

/* Tag Cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--creme);
    color: var(--braun);
    border-radius: 12px;
    border: 0.5px solid #e0d0c0;
    transition: all 0.15s;
}
.tag:hover { background: var(--beige); color: var(--rot); }

/* Sidebar Button */
.btn-sidebar {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--rot);
    text-align: center;
}
.btn-sidebar:hover { color: var(--hellrot); }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--dunkelbraun);
    color: rgba(255,255,255,0.65);
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    font-size: 13px;
}
.footer-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}
.footer-logo span { color: #f5c0b0; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.site-footer h5 {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.site-footer a {
    display: block;
    color: rgba(255,255,255,0.55);
    margin-bottom: 5px;
    font-size: 13px;
}
.site-footer a:hover { color: #f5c0b0; }
.footer-bottom {
    border-top: 0.5px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); display: inline; }
.footer-bottom a:hover { color: #f5c0b0; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--rot);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(192,57,43,0.4);
    transition: background 0.15s;
}
.scroll-top:hover { background: var(--hellrot); color: #fff; }

/* ---- FORMS ---- */
/* ---- FORMS ---- */
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="search"], textarea, select {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #fdf8f4;
    outline: none;
    width: 100%;
    margin-bottom: 10px;
    transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--rot);
    background: #fff;
}
textarea { min-height: 100px; resize: vertical; }
label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dunkelbraun);
    margin-bottom: 4px;
}
input[type="submit"], button[type="submit"],
input[type="button"], .btn {
    background: var(--rot);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: background 0.15s;
}
input[type="submit"]:hover, button[type="submit"]:hover,
input[type="button"]:hover, .btn:hover { background: var(--hellrot); }
.form-style { max-width: 600px; }
.form-style input, .form-style textarea, .form-style select { margin-bottom: 12px; }
#searchinput {
    display: block;
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #fdf8f4;
    margin-bottom: 10px;
}
#searchinput:focus { border-color: var(--rot); background: #fff; outline: none; }
/* Kommentar-Bereich */
.form-style h3, .form-style h2 { margin-bottom: 16px; }
p.lmb { font-family: Georgia, serif; font-size: 16px; font-weight: 500; color: var(--dunkelbraun); margin-bottom: 8px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-sidebar { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .logo-actions { display: none; }
    .dropdown-wide { min-width: 300px; grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .logo-bar .container { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-list { overflow-x: auto; }
    .group { grid-template-columns: 1fr; }
    .topbar-search { display: none; }
}

/* ---- ADSBYGOOGLE FIX ---- */
.adsbygoogle { display: block; }

/* ---- STARTSEITE / ALLGEMEINE CONTENT-VERBESSERUNGEN ---- */

/* Bilder im Content schön rund und nicht zu breit */
.content-main img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    margin: 8px 0;
}

/* Bild links mit Text daneben */
.img_left2 {
    float: left;
    margin: 0 14px 10px 0;
    border-radius: 8px;
}

/* Clearfix nach floats */
.content-main p::after,
.content-main div::after {
    content: "";
    display: table;
    clear: both;
}

/* Listen im Content besser stylen */
.content-main ul:not(.a):not(.mini-rezepte):not(.nav-list):not(.recent_posts_list) {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}
.content-main ul:not(.a):not(.mini-rezepte):not(.nav-list):not(.recent_posts_list) li {
    padding: 5px 0 5px 20px;
    position: relative;
    border-bottom: 0.5px solid #f5ede5;
    font-size: 14px;
}
.content-main ul:not(.a):not(.mini-rezepte):not(.nav-list):not(.recent_posts_list) li::before {
    content: "›";
    position: absolute;
    left: 4px;
    color: var(--rot);
    font-weight: 600;
}
.content-main ul:not(.a):not(.mini-rezepte):not(.nav-list):not(.recent_posts_list) li:last-child {
    border-bottom: none;
}

/* Absätze besser lesbar */
.content-main p {
    margin-bottom: 14px;
    line-height: 1.7;
}

/* Horizontale Trennlinie */
.content-main hr,
.clearfix.divider_dashed1,
.clearfix.divider_dashed7 {
    border: none;
    border-top: 2px solid var(--beige);
    margin: 20px 0;
}

/* div.huhu + group Kombinationen schöner */
.content-main > div > .huhu:first-child {
    margin-top: 0;
}

/* Inline-Bilder nicht zu groß */
.content-main img[width] {
    max-width: 100%;
}

/* Schöner NEU-Badge für Startseiten-Hinweise */
.content-main p strong {
    color: var(--dunkelbraun);
}

/* Links im Content */
.content-main a {
    color: var(--rot);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}
.content-main a:hover {
    border-bottom-color: var(--rot);
}

/* Sterne-Rating */
.stars { color: #e8a020; letter-spacing: 2px; }

/* Div mit class="stars" für Bewertungen */
div.stars { margin: 10px 0; }






/* ============================================
   REZEPT SCHRITTE - SAUBERE DEFINITION
   ============================================ */
.huhu {
    background: var(--dunkelbraun) !important;
    color: #fff !important;
    padding: 8px 14px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 20px 0 0 !important;
    border-radius: 6px 6px 0 0 !important;
}
.group {
    display: grid !important;
    grid-template-columns: 1fr 36px 1fr !important;
    gap: 16px !important;
    align-items: start !important;
    margin-bottom: 4px !important;
    padding: 14px !important;
    background: #fff !important;
    border: 0.5px solid var(--border) !important;
    border-radius: 0 0 8px 8px !important;
}
.one_third {
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
}
.one_third1 {
    float: none !important;
    width: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 4px !important;
}
.one_third1 img {
    width: 20px !important;
    height: auto !important;
    opacity: 0.35 !important;
}
.one_third.last {
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
}
.one_third.last div[itemprop="instructions"] {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}


/* ---- EINKAUFSLISTE / UTENSILIEN BEREICH ---- */
.group > .left,
.group > .right {
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
}
/* Einkaufsliste - Links inline lassen */
.right a, .left a {
    display: inline !important;
    border-bottom: none !important;
}
.right br { display: block; line-height: 1.4; }
/* Bilder mit align=left floaten lassen */
img[align="left"] {
    float: left !important;
    margin-right: 8px !important;
    margin-bottom: 4px !important;
}
/* Clearfix nach float-Bildern */
.right::after, .left::after {
    content: "";
    display: table;
    clear: both;
}
/* font-Tags styled lassen */
.right font[color="#AA0000"],
.left font[color="#AA0000"] {
    color: var(--rot) !important;
    font-weight: 500;
}
/* time-Element */
time { font-size: 14px; }

/* Listenlinks in content-main inline halten */
.content-main .right ul,
.content-main .left ul {
    list-style: disc !important;
    padding-left: 18px !important;
}
.content-main .right ul li,
.content-main .left ul li {
    display: list-item !important;
    border-bottom: none !important;
    padding: 2px 0 !important;
}
.content-main .right ul li::before,
.content-main .left ul li::before {
    display: none !important;
}
/* Einkaufsliste komma-getrennt - links inline */
.content-main a {
    display: inline !important;
}


/* ---- REZEPTFOTO GROSS ---- */
/* Das Foto oben rechts beim Rezept */
#gallery img, .right img:not([align="left"]):not([src*="utensilien"]):not([src*="einkaufen"]):not([src*="zubereitung"]):not([src*="hobbykoch"]):not([src*="anfaenger"]):not([src*="profikoch"]) {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    border-radius: 10px !important;
}
#gallery { margin-bottom: 12px; }

/* ---- EINKAUFSLISTE INLINE ---- */
/* Der .right Bereich mit der Einkaufsliste */
.content-main .right {
    font-size: 14px;
    line-height: 1.8;
}
/* Alle a-Tags im right-div inline */
div.right a, div.left a {
    display: inline !important;
    color: var(--rot) !important;
}
/* Kein block-display für links generell im content */
.content-main a {
    display: inline !important;
    border-bottom: none !important;
}
.content-main a:hover {
    text-decoration: underline !important;
    border-bottom: none !important;
}
/* group left/right nebeneinander */
div.group > div.left {
    float: none !important;
    display: block !important;
}
div.group > div.right {
    float: none !important;
    display: block !important;
}
/* Das group mit left+right = 2 Spalten */
div.group:has(> div.left):has(> div.right) {
    grid-template-columns: 1fr 1fr !important;
}


/* ---- KLEINE ICON-BILDER NICHT STRECKEN ---- */
img[src*=".gif"],
img[width="15"],
img[width="14"],
img[width="20"],
img[width="25"],
img[width="16"],
img[height="14"],
img[height="25"] {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
}
/* Sterne-Icons */
.fa-star { color: #e8a020; }

/* Nur echte Rezeptfotos groß machen - nur upload-Bilder */
#gallery img,
img[src*="/upload/"] {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    border-radius: 10px !important;
}




/* ---- TABS PURE CSS ---- */
ul.tabs3 {
    display: flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 16px 0 0 !important;
    border-bottom: 2px solid var(--beige) !important;
    gap: 4px !important;
}
ul.tabs3 li { padding: 0 !important; border-bottom: none !important; }
ul.tabs3 li::before { display: none !important; }
ul.tabs3 li a {
    display: block !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    border: 0.5px solid transparent !important;
    border-radius: 6px 6px 0 0 !important;
    cursor: pointer !important;
    margin-bottom: -2px !important;
}
ul.tabs3 li a:hover { background: var(--beige) !important; color: var(--rot) !important; }
ul.tabs3 li.active a {
    background: #fff !important;
    color: var(--rot) !important;
    border-color: var(--border) !important;
    border-bottom-color: #fff !important;
}
.tabs-content3 {
    background: #fff !important;
    border: 0.5px solid var(--border) !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
}
/* Alle panels verstecken - inline style überschreiben */

/* :target basierte tabs */
.tabs-panel3:target { display: block !important; }
/* Wenn ein panel per :target aktiv ist, erstes ausblenden */
.tabs-content3:has(.tabs-panel3:target) .tabs-panel3:first-of-type { display: none !important; }
.tabs-content3:has(.tabs-panel3:target) .tabs-panel3:target { display: block !important; }


.dropdown a, .dropdown-wide a {
    display: block !important;
}

.cbp-caption-defaultWrap i.fa-camera {
    font-size: 40px !important;
    color: #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 120px !important;
    width: 100% !important;
}
.content-main a:not(.cbp-l-caption-buttonLeft):not(.cbp-item a) {
    display: inline !important;
}
/* CubePortfolio - floats wiederherstellen */
#grid-container .cbp-item {
    float: left !important;
    position: absolute !important;
}
#grid-container {
    position: relative !important;
}

/* Dropdown Links fix */
.dropdown a, .dropdown-wide a, .dd-col a, .nav-list a {
    display: block !important;
}

/* Autocomplete Suche */
.ui-autocomplete {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
}
.ui-autocomplete .ui-menu-item {
    padding: 0 !important;
}
.ui-autocomplete .ui-menu-item-wrapper {
    padding: 8px 14px !important;
    font-size: 14px !important;
    color: var(--dunkelbraun) !important;
    display: block !important;
    border-bottom: 0.5px solid var(--border) !important;
}
.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-state-active {
    background: var(--creme) !important;
    color: var(--rot) !important;
    border-color: var(--border) !important;
}

/* Beliebte Rezepte */
ul.recent_posts_list li {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    border-bottom: 0.5px solid var(--border) !important;
    list-style: none !important;
}
ul.recent_posts_list li a:first-child {
    flex-shrink: 0 !important;
    display: block !important;
}
ul.recent_posts_list li div {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}
ul.recent_posts_list { padding-left: 0 !important; }