/* HLAVNÍ OBÁLKA FÓRA */
.hwf-wrap { 
    font-family: Tahoma, Arial, sans-serif; 
    font-size: 13px; 
    color: #cccccc; 
}

/* HLAVIČKA TABULKY (KATEGORIE) */
.hwf-header { 
    background: #111111; 
    color: #ffcc00; /* Tvoje žlutá */
    padding: 12px; 
    font-weight: bold; 
    border: 1px solid #333333; 
    border-bottom: 2px solid #ffcc00; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* TABULKA KATEGORIÍ */
.hwf-cat-table { 
    width: 100%; 
    border-collapse: collapse; 
    background: #1a1a1a; 
    border: 1px solid #333333; 
    margin-bottom: 20px; 
}
.hwf-cat-table td { 
    padding: 15px; 
    border-bottom: 1px solid #2a2a2a; 
}

/* NÁZEV KATEGORIE A POPIS */
.hwf-cat-title { 
    font-size: 16px; 
    font-weight: bold; 
    color: #ffcc00; 
    text-decoration: none; 
}
.hwf-cat-title:hover { 
    text-decoration: underline; 
    color: #ffffff; 
}
.hwf-cat-desc { 
    font-size: 12px; 
    color: #888888; 
    margin-top: 5px; 
}

/* STATISTIKY (Témata, Příspěvky) */
.hwf-stats { 
    font-size: 11px; 
    color: #777777; 
    text-align: center; 
    width: 15%; 
    border-left: 1px solid #2a2a2a; 
}
.hwf-stats strong {
    color: #aaaaaa;
}

/* POSLEDNÍ PŘÍSPĚVEK */
.hwf-last-post { 
    font-size: 11px; 
    width: 25%; 
    text-align: right; 
    border-left: 1px solid #2a2a2a; 
    color: #777777; 
}

/* IKONA SLOŽKY */
.hwf-icon { 
    font-size: 28px; 
    color: #444444; 
    padding-right: 15px; 
    width: 40px; 
    text-align: center; 
}

/* TLAČÍTKA A FORMULÁŘE (Temný styl) */
.hwf-btn {
    background-color: #ffcc00;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}
.hwf-btn:hover {
    background-color: #e6b800;
}
/* Oprava neviditelného písma ve formulářích */
.hwf-input, .hwf-textarea {
    width: 100% !important;
    background-color: #111111 !important;
    color: #ffffff !important; /* Vynucené bílé písmo */
    border: 1px solid #ffcc00 !important;
    padding: 10px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    margin-bottom: 15px !important;
}
.hwf-input:focus, .hwf-textarea:focus {
    outline: none !important;
    border-color: #ffffff !important;
    background-color: #1a1a1a !important; /* Při psaní lehce zesvětlá pozadí */
}
.hwf-form-box {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 20px;
    margin-top: 30px;
    border-left: 3px solid #ffcc00;
}
.hwf-topic-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #2a2a2a;
    background: #151515;
}

/* DETAIL TÉMATU A PŘÍSPĚVKY */
.hwf-post-wrap { 
    border: 1px solid #333333; 
    margin-bottom: 15px; 
    display: flex; 
    flex-wrap: wrap; 
    background: #1a1a1a; 
}
.hwf-post-head { 
    width: 100%; 
    background: #111111; 
    padding: 8px 15px; 
    font-size: 11px; 
    color: #888888; 
    border-bottom: 1px solid #333333; 
}
.hwf-post-left { 
    width: 20%; 
    padding: 15px; 
    background: #151515; 
    border-right: 1px solid #333333; 
    text-align: center; 
}
.hwf-post-right { 
    width: 80%; 
    padding: 15px; 
    color: #cccccc; 
    line-height: 1.6; 
}
.hwf-author-name { 
    font-weight: bold; 
    color: #ffcc00; 
    font-size: 14px; 
    margin-bottom: 10px; 
}
.hwf-avatar { 
    width: 60px; 
    height: 60px; 
    background: #222222; 
    border: 1px solid #444444; 
    border-radius: 4px; 
    margin: 0 auto 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    color: #555555; 
}
/* Responzivita pro mobily */
@media (max-width: 768px) {
    .hwf-post-left { width: 100%; border-right: none; border-bottom: 1px solid #333; display: flex; align-items: center; text-align: left; padding: 10px; }
    .hwf-avatar { margin: 0 15px 0 0; width: 40px; height: 40px; font-size: 18px; }
    .hwf-author-name { margin-bottom: 0; }
    .hwf-post-right { width: 100%; }
}



/* LIŠTA PRO BBCODE (Tučné, kurzíva, atd.) */
.hwf-bbcode-toolbar {
    background: #111111;
    border: 1px solid #ffcc00;
    border-bottom: none;
    padding: 5px;
    display: flex;
    gap: 5px;
}
.hwf-bbcode-btn {
    background: #222222;
    color: #cccccc;
    border: 1px solid #444444;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}
.hwf-bbcode-btn:hover {
    background: #ffcc00;
    color: #000000;
}
/* Aby text. pole hezky navazovalo na lištu tlačítek */
.hwf-textarea-bb {
    margin-bottom: 15px !important;
    border-top: none !important;
}
/* Citace v textu */
.hwf-quote {
    background: #111111;
    border-left: 4px solid #ffcc00;
    padding: 10px;
    margin: 10px 0;
    color: #aaaaaa;
    font-style: italic;
}

/* STRÁNKOVÁNÍ */
.hwf-pagination {
    padding: 10px 0;
    font-size: 13px;
    color: #aaaaaa;
}
.hwf-pagination a {
    color: #ffcc00;
    text-decoration: none;
    padding: 2px 5px;
    border: 1px solid #333;
    background: #111;
    margin-right: 3px;
}
.hwf-pagination a:hover {
    background: #ffcc00;
    color: #000;
}
.hwf-pagination strong {
    padding: 2px 5px;
    border: 1px solid #ffcc00;
    background: #ffcc00;
    color: #000;
    margin-right: 3px;
}
/* DETAILY UŽIVATELE (Hodnosti) */
.hwf-user-rank {
    font-size: 11px;
    color: #ffaa00;
    font-weight: bold;
    margin-bottom: 5px;
}
.hwf-user-stats {
    font-size: 10px;
    color: #777777;
    margin-top: 5px;
}
.hwf-avatar img {
    border-radius: 3px;
}
/* ADMIN ZÁLOŽKY (Tabs) */
.hwf-admin-nav { margin-bottom: 20px; border-bottom: 1px solid #ccc; padding-bottom: 10px; }
.hwf-admin-nav a { text-decoration: none; padding: 5px 15px; background: #fff; border: 1px solid #ccc; color: #333; margin-right: 5px; }
.hwf-admin-nav a.active { background: #0071a1; color: #fff; border-color: #0071a1; }

/* ŠTÍTKY A ZVÝRAZNĚNÍ TÉMAT */
.hwf-topic-sticky td { background-color: #2a2200 !important; }
.hwf-badge { padding: 3px 6px; font-size: 10px; font-weight: bold; border-radius: 3px; margin-right: 8px; text-transform: uppercase; }
.hwf-badge-sticky { background: #ffcc00; color: #000; }
.hwf-badge-locked { background: #aa0000; color: #fff; }

/* AKČNÍ TLAČÍTKA U PŘÍSPĚVKU (Mazání) */
.hwf-post-actions { margin-top: 15px; text-align: right; border-top: 1px solid #222; padding-top: 10px; }
.hwf-action-btn { color: #888; font-size: 11px; text-decoration: none; margin-left: 10px; border: 1px solid #333; padding: 4px 10px; background: #111; text-transform: uppercase; font-weight: bold; }
.hwf-action-btn:hover { color: #ffcc00; border-color: #ffcc00; background: #222; }

/* VYHLEDÁVACÍ POLE */
.hwf-search-box { float: right; margin-bottom: 15px; display: flex; }
/* OPRAVA VYHLEDÁVACÍHO POLE */
.hwf-search-input { 
    background: #111111 !important; 
    color: #ffffff !important; 
    border: 1px solid #ffcc00 !important; 
    padding: 8px 10px !important; 
    font-size: 12px !important; 
    border-right: none !important; 
    outline: none !important; 
}
.hwf-search-btn { background: #ffcc00; color: #000; border: 1px solid #ffcc00; padding: 8px 15px; font-size: 12px; font-weight: bold; cursor: pointer; text-transform: uppercase; }
.hwf-search-btn:hover { background: #e6b800; }
.hwf-clear { clear: both; }

/* PODPISY (SIGNATURES) */
.hwf-signature { font-size: 11px; color: #777; margin-top: 20px; border-top: 1px dotted #444; padding-top: 10px; line-height: 1.4; }

/* IKONY PRO NOVÉ/STARÉ PŘÍSPĚVKY */
.hwf-icon-new { color: #ff9900; font-weight: bold; text-shadow: 0px 0px 5px rgba(255, 153, 0, 0.5); }
.hwf-icon-old { color: #555555; }

/* GLOBÁLNÍ STATISTIKY (Úplně dole na Indexu) */
.hwf-global-stats { background: #151515; border: 1px solid #333; margin-top: 20px; padding: 15px; font-size: 11px; color: #aaa; border-top: 2px solid #ffcc00; }
.hwf-global-stats h3 { color: #ffcc00; margin: 0 0 10px 0; font-size: 14px; text-transform: uppercase; border-bottom: 1px solid #222; padding-bottom: 5px; }
.hwf-global-stats strong { color: #fff; }

/* VYLEPŠENÝ BOX CITACE */
.hwf-quote { background: #111; border-left: 4px solid #ffcc00; padding: 10px; margin: 10px 0; color: #aaa; font-style: italic; border-radius: 0 3px 3px 0; }
.hwf-quote-author { color: #ffcc00; font-style: normal; font-weight: bold; font-size: 11px; text-transform: uppercase; display: block; margin-bottom: 5px; border-bottom: 1px dotted #333; padding-bottom: 3px; }