/* NUG klasikinis minimalus maketas (be animacijų, be gradientų) */

/* Reset */
* { box-sizing: border-box; }

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #222;
    margin: 0;
    padding: 0;
    background: #f3f4f6; /* švelniai pilka */
    display: flex;
    justify-content: center;
}

/* Vidinis konteineris */
.in {
    width: 820px;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
    text-align: center;
}

/* Viršutinė juosta ir apačia */
.topbar, .bottombar {
    width: 100%;
    max-width: 820px;
    margin: 8px auto 12px auto;
    background: #4b5563;
    color: #fff;
    border: 1px solid #6b7280;
    text-align: center;
    padding: 8px 10px;
    font-weight: bold;
}

/* Bendros lentelės (kortelės) */
.content-table {
    width: 100%;
    margin: 8px 0 12px 0;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #d1d5db; /* šviesi pilka */
}

.content-header {
    background: #4b5563; /* tamsi pilkai mėlyna */
    color: #fff;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.content-body {
    background: #fff;
    padding: 12px;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* Maži informaciniai blokai eilėje */
.stats-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 8px 0;
}

.stat-table {
    flex: 0 1 160px;
    border: 1px solid #d1d5db;
    background: #fff;
}

.stat-header {
    background: #4b5563;
    color: #fff;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}

.stat-number {
    background: #fff;
    color: #111;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Mygtukai */
.action-buttons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 8px 0; }
.action-btn {
    display: inline-block;
    padding: 8px 14px;
    margin: 2px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #4b5563;
    border: 1px solid #6b7280;
}
.action-btn:hover { background: #374151; color: #fff; text-decoration: none; }

/* Grotelės personažams ir ypatybėms */
.character-grid { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.character-card { text-align: center; padding: 6px; border: 1px solid #e5e7eb; }
.character-card img { width: 56px; height: 56px; border: 1px solid #d1d5db; background: #fff; }
.char-name { font-size: 10px; margin-top: 4px; font-weight: bold; color: #222; }

.features-grid { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.feature-item { background: #f3f4f6; border: 1px solid #e5e7eb; padding: 6px 10px; font-size: 12px; }

/* Nuorodos */
a { color: #15803d; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Klasikinis dviejų stulpelių maketas */
.layout-table { width: 100%; max-width: 820px; margin: 0 auto; border-collapse: collapse; }
.layout-table td { vertical-align: top; }
.sidebar {
    width: 200px;
}
.menu-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #d1d5db; }
.menu-header { background: #4b5563; color: #fff; text-align: center; font-weight: bold; padding: 6px 8px; }
.menu-body { padding: 6px; text-align: left; }
.menu-link { display: block; padding: 4px 6px; color: #15803d; text-decoration: none; border-bottom: 1px solid #e5e7eb; }
.menu-link:hover { background: #f3f4f6; text-decoration: underline; }

/* Atsakas mažiems ekranams */
@media (max-width: 600px) {
    .in { padding: 10px; }
    .content-body { font-size: 12px; padding: 10px; }
    .content-header { font-size: 12px; padding: 6px 8px; }
    .stat-table { flex-basis: 140px; }
    .sidebar { width: 100%; }
    .layout-table, .layout-table tr, .layout-table td { display: block; width: 100%; }
}


