
			/* SZABLON KOLORÓW - DomOgródPorady.pl (ciepłe naturalne kolory) */
:root {
    --main-color: #FF9500 !important;     /* Pomarańczowy - dach i "Porady.pl" */
    --secondary-color: #7ED321 !important; /* Jasny zielony - "Dom" i liście */
    --accent-color: #50E3C2 !important;   /* Turkusowy - "Ogród" */
    --warm-orange: #FFB84D !important;    /* Jasny pomarańczowy - gradient */
    --nature-green: #4CAF50 !important;   /* Ciemniejszy zielony */
    --light-bg: #FFF8F0 !important;       /* Bardzo jasny pomarańczowy */
    --text-color: #2E4A3D !important;     /* Ciemny zielony */
    --border-color: #E8F4E8 !important;   /* Jasny zielony */
}

/* Stylizacja treści w obszarze och-post-content */
.och-post-content {
    line-height: 1.6;
    color: var(--text-color);
}

/* TABELE - ciepłe z naturalnym gradientem */
.och-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--border-color);
}

.och-post-content table thead {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--warm-orange) 50%, var(--secondary-color) 100%);
    color: white;
}

.och-post-content table th {
    padding: 16px 14px;
    text-align: left;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.och-post-content table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.och-post-content table tbody tr:hover {
    background: linear-gradient(90deg, var(--light-bg) 0%, #F0FFF0 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 149, 0, 0.08);
}

.och-post-content table tbody tr:last-child td {
    border-bottom: none;
}

/* LISTY - z ikonami natury */
.och-post-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.och-post-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.och-post-content ul li:before {
    content: "🌿";
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 1px;
    filter: hue-rotate(20deg);
}

.och-post-content ul li:nth-child(2n):before {
    content: "🏡";
}

.och-post-content ul li:nth-child(3n):before {
    content: "🌱";
}

/* Lista numerowana - okrągłe z gradientem */
.och-post-content ol {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.och-post-content ol li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 10px;
    counter-increment: custom-counter;
}

.och-post-content ol li:before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255, 149, 0, 0.3);
}

.och-post-content ol li:nth-child(even):before {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--nature-green) 100%);
}

/* CYTATY - ciepłe z ikoną domu */
.och-post-content blockquote {
    position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, #F0FFF0 100%);
    border-left: 5px solid var(--main-color);
    border-right: 3px solid var(--accent-color);
    margin: 25px 0;
    padding: 22px 28px;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.7;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.1);
}

.och-post-content blockquote:before {
    content: "🏠";
    position: absolute;
    top: -8px;
    left: 18px;
    font-size: 2.2em;
    opacity: 0.4;
    line-height: 1;
    background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.och-post-content blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
}

/* STRONG/BOLD - ciepły gradient */
.och-post-content strong,
.och-post-content b {
    background: linear-gradient(45deg, var(--main-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

@supports not (-webkit-background-clip: text) {
    .och-post-content strong,
    .och-post-content b {
        color: var(--main-color);
        background: none;
        -webkit-text-fill-color: initial;
    }
}

/* NAGŁÓWKI - przyjazne z naturalnymi akcentami */
.och-post-content h1,
.och-post-content h2,
.och-post-content h3,
.och-post-content h4,
.och-post-content h5,
.och-post-content h6 {
    color: var(--nature-green);
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 700;
}

.och-post-content h2 {
    background: linear-gradient(90deg, var(--light-bg) 0%, transparent 100%);
    border-left: 4px solid var(--main-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 14px 20px;
    border-radius: 6px;
    color: var(--main-color);
    position: relative;
}

.och-post-content h2:after {
    content: "🌻";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    opacity: 0.7;
}

.och-post-content h3 {
    position: relative;
    padding-left: 28px;
    color: var(--secondary-color);
}

.och-post-content h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 22px;
    background: linear-gradient(180deg, var(--main-color) 0%, var(--accent-color) 100%);
    border-radius: 3px;
}

/* LINKI - ciepłe z soft hover */
.och-post-content a {
    color: var(--main-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.och-post-content a:hover {
    color: var(--nature-green);
    background: var(--light-bg);
    padding: 3px 7px;
    border-radius: 5px;
    border-bottom: 2px solid var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.15);
}

/* KOD - w ciepłych tonach */
.och-post-content code {
    background: var(--light-bg);
    padding: 3px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--nature-green);
    border: 1px solid var(--border-color);
}

.och-post-content pre {
    background: linear-gradient(135deg, var(--nature-green) 0%, var(--accent-color) 100%);
    color: white;
    padding: 22px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.2);
    border-top: 4px solid var(--main-color);
    position: relative;
}

.och-post-content pre:before {
    content: "🌐";
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.4em;
    opacity: 0.6;
}

.och-post-content pre code {
    background: none;
    padding: 0;
    border: none;
    color: inherit;
}

/* DODATKOWE ELEMENTY - naturalne akcenty */
.och-post-content hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    margin: 30px 0;
    border-radius: 2px;
}

.och-post-content img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.1);
    transition: transform 0.3s ease;
}

.och-post-content img:hover {
    transform: scale(1.02);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .och-post-content table {
        font-size: 0.9em;
    }
    
    .och-post-content th,
    .och-post-content td {
        padding: 10px 8px;
    }
    
    .och-post-content blockquote {
        padding: 18px 22px;
        margin: 15px 0;
    }
    
    .och-post-content blockquote:before {
        font-size: 1.8em;
        top: -5px;
    }
    
    .och-post-content h2 {
        padding: 12px 16px;
    }
    
    .och-post-content h2:after {
        font-size: 1.1em;
        right: 12px;
    }
    
    .och-post-content ol li:before {
        width: 22px;
        height: 22px;
        font-size: 0.8em;
    }
    
    .och-post-content ul li:before {
        font-size: 1em;
    }
}		