/* Content Area Styles - FC Manager
   Style dla głównego obszaru treści stron
   Bazuje na .content-area z historia.php
   Wersja: 1.0
*/

/* Content area - główny kontener treści */
.content-area {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-accent);
    margin-bottom: 2rem;
}

/* Content styling - nagłówki */
.content-area h1 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    font-family: 'Saira Condensed', Arial, sans-serif;
}

.content-area h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-area h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.content-area h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Content styling - paragrafy i tekst */
.content-area p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Content styling - listy */
.content-area ul,
.content-area ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-area li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Content styling - obrazki */
.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: block;
}

/* Content styling - tabele */
.content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.content-area th,
.content-area td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--dark-accent);
}

.content-area th {
    background: var(--primary-green);
    color: white;
    font-weight: 600;
}

/* Content styling - cytaty */
.content-area blockquote {
    border-left: 4px solid var(--primary-green);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Responsive - Content Area */
@media (max-width: 768px) {
    .content-area {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .content-area h1 {
        font-size: 2rem;
    }
    
    .content-area h2 {
        font-size: 1.5rem;
    }
    
    .content-area p {
        font-size: 1rem;
    }
}

/* Light Theme Overrides - Content Area */
html[data-theme='light'] .content-area {
    background: #ffffff !important;
    border: 2px solid #1e293b !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

html[data-theme='light'] .content-area h1,
html[data-theme='light'] .content-area h2,
html[data-theme='light'] .content-area h3,
html[data-theme='light'] .content-area h4,
html[data-theme='light'] .content-area p,
html[data-theme='light'] .content-area li {
    color: #1e293b !important;
}

html[data-theme='light'] .content-area table {
    background: rgba(0, 0, 0, 0.02) !important;
}

html[data-theme='light'] .content-area th,
html[data-theme='light'] .content-area td {
    border-bottom: 1px solid #e2e8f0 !important;
}

html[data-theme='light'] .content-area blockquote {
    background: rgba(34, 197, 94, 0.05) !important;
    color: #1e293b !important;
}
