/* --- KLASYCZNY STYL FORUM (HARD STYLE - myBB/FluxBB) --- */

body {
    font-family: Tahoma, Verdana, Arial, sans-serif;
    background-color: #efefef; /* Jasnoszare tło poza kontenerem */
    color: #333;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- POPRAWKA ODSTĘPÓW DLA TEKSTÓW W KONTENERZE --- */
.container h1 {
    padding: 20px 20px 10px 20px; /* Odsuwa "Zarządzanie Forum" i "Ostatnie Wątki" */
    margin: 0;
    font-size: 22px;
}

.container p {
    padding: 0 20px 15px 20px; /* Odsuwa "Najnowsze dyskusje..." */
    margin: 0;
    color: #666;
}

.container h2 {
    padding: 10px 20px;
    margin: 0;
}

/* --- NAWIGACJA (GÓRNA BELKA) --- */
.forum-nav {
    background: linear-gradient(to bottom, #005489 0%, #003d65 100%);
    color: white;
    border-bottom: 3px solid #002d4b;
}

.forum-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.forum-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: bold;
    display: block;
    border-right: 1px solid #004a79;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer; /* Kategorie w menu mają być klikalne */
}

.forum-nav li a:hover {
    background: #004a79;
}

/* --- NAGŁÓWKI SEKCJI / TABELI --- */
.forum-category-header {
    background: #026cb1;
    background-image: linear-gradient(to bottom, #026cb1 0%, #015185 100%);
    color: white;
    padding: 12px 20px; /* Zwiększony padding, by tekst nie dotykał brzegów */
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px solid #002d4b;
}

/* --- WIDOK LISTY WĄTKÓW (index.html) --- */
.thread-list-container {
    width: 100%;
    border-collapse: collapse;
}

.thread-row {
    display: grid;
    /* Układ: Ikona | Tytuł/Wstęp | Autor | Dział */
    grid-template-columns: 45px 1fr 150px 120px;
    border-bottom: 1px solid #ddd;
    background: #fff;
    align-items: center;
}

.thread-row:nth-child(even) {
    background: #f9f9f9;
}

.thread-row:hover {
    background: #ffffda; /* Klasyczny hover myBB */
}

.thread-icon {
    text-align: center;
    font-size: 18px;
    color: #888;
}

.thread-main {
    padding: 12px 20px; /* Zwiększony boczny padding treści wątku */
    border-left: 1px solid #eee;
}

.thread-title {
    font-weight: bold;
    color: #005489;
    font-size: 13px;
    text-decoration: none;
    display: block;
    margin-bottom: 3px;
}

.thread-title:hover {
    text-decoration: underline;
}

.thread-subtitle {
    font-size: 10px;
    color: #777;
}

.thread-excerpt {
    font-size: 11px;
    color: #555;
    margin-top: 5px;
    line-height: 1.4;
}

/* Statystyki i dane boczne wiersza */
.thread-meta {
    font-size: 11px;
    color: #666;
    border-left: 1px solid #eee;
    padding: 10px;
    text-align: center;
    line-height: 1.5;
}

/* --- WIDOK POJEDYNCZEGO POSTA (post.html) --- */
.post-container {
    display: grid;
    grid-template-columns: 200px 1fr; /* Szeroki sidebar autora */
    background: #fff;
    min-height: 300px;
}

.post-author-sidebar {
    background: #f5f5f5;
    padding: 20px;
    border-right: 2px solid #026cb1;
    text-align: center;
}

.author-name {
    font-weight: bold;
    color: #005489;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.post-content-main {
    padding: 25px;
    background: #fff;
    position: relative;
}

.post-date {
    font-size: 10px;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.actual-text {
    font-size: 13px;
    line-height: 1.6;
    color: #222;
}

/* --- NOWE: SYGNATURA / LINK POD POSTEM --- */
.post-signature {
    margin-top: 30px;
    padding-top: 10px;
}

.post-signature hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 0 0 10px 0;
    width: 200px; /* Klasyczna krótka kreseczka forumowa */
}

.post-signature a {
    font-size: 12px;
    color: #005489;
    text-decoration: none;
    word-break: break-all;
}

.post-signature a:hover {
    text-decoration: underline;
}

/* --- ELEMENTY SPECJALNE --- */
.sponsored-badge {
    background: #fff5f5;
    color: #c00;
    border: 1px solid #ffcccc;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 8px;
    border-radius: 2px;
}

.read-more-btn {
    display: inline-block;
    background: #f1f1f1;
    background-image: linear-gradient(to bottom, #ffffff 0%, #e1e1e1 100%);
    border: 1px solid #bbb;
    color: #333;
    padding: 4px 12px;
    font-size: 10px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}

.read-more-btn:hover {
    background: #e5e5e5;
    border-color: #999;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .thread-row {
        grid-template-columns: 45px 1fr;
    }
    .thread-meta, .thread-row div:last-child {
        display: none;
    }
    .post-container {
        grid-template-columns: 1fr;
    }
    .post-author-sidebar {
        border-right: none;
        border-bottom: 2px solid #026cb1;
    }
}