/*
 * Anime Tracker - Help pages shared stylesheet (1.0.22)
 * https://www.sicakcikolata.com
 * Copyright (C) 2025 Okan Sumer
 * Licensed under GNU General Public License v2
 *
 * Extracted from the inline <style> of help.php when the single help page
 * was split into an index (help.php) plus grouped sub-pages under help/.
 * Shared by help.php and every help/*.php page so the styling lives in one
 * place instead of being duplicated per page.
 */

.help-container {
    max-width: 850px;
    margin: 40px auto;
    padding: 30px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
}
.help-container h1 {
    font-size: 2em;
    color: #2c3e50;
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #4a90e2;
}
.help-container h2 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.help-container h3 {
    font-size: 1.1em;
    color: #4a90e2;
    margin-top: 22px;
    margin-bottom: 8px;
}
.help-container p {
    margin: 10px 0;
    color: #444;
}
.help-container ul {
    padding-left: 24px;
    margin: 10px 0;
}
.help-container li {
    margin: 6px 0;
}
.help-container code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
    color: #c7254e;
}
.help-container .box {
    background: #f8f9fa;
    border-left: 4px solid #4a90e2;
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 4px;
}
.help-container .box.warning {
    background: #fff8e1;
    border-left-color: #ffc107;
}
.help-container .box.safe {
    background: #e8f5e9;
    border-left-color: #4caf50;
}
.help-container .box.danger {
    background: #ffebee;
    border-left-color: #e53935;
}
.help-container .box.info {
    background: #e3f2fd;
    border-left-color: #1976d2;
}
.help-container .icon-inline {
    color: #4a90e2;
    margin-right: 6px;
}
.help-container .toc {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 6px;
    margin-bottom: 25px;
}
.help-container .toc a {
    color: #4a90e2;
    text-decoration: none;
}
.help-container .toc a:hover {
    text-decoration: underline;
}
.help-container .toc-group {
    margin: 18px 0;
}
.help-container .toc-group > strong {
    display: block;
    font-size: 1.05em;
    color: #2c3e50;
    margin-bottom: 4px;
}
.help-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.help-container th, .help-container td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.help-container th {
    background: #f4f6f8;
    font-weight: 600;
}
/* 1.1.14: help sayfalarindaki "Ana Sayfaya/Indekse Don" baglantisi artik
   cercerveli buton gorunumunde (duz mavi yazi degil): beyaz zemin, mavi
   kenar+yazi, altı cizgisiz - yil filtresindeki temizle butonuyla tutarli. */
.back-link {
    display: inline-block;
    margin: 20px 0;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #4a90e2;
    border-radius: 4px;
    color: #4a90e2;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.back-link:hover { background: #eaf2fb; border-color: #357abd; color: #357abd; text-decoration: none; }
