:root {
    /* CIEMNY, KONKRETNY GRANAT */
    --primary: #082c4a;

    /* AKCENT – zostaje */
    --accent: #1dd3b0;

    /* TŁO STRONY – WYRAŹNIE SZARE */
    --bg: #eef2f6;

    /* KARTY / TABELE – CZYSTA BIEL */
    --white: #ffffff;

    /* TŁO HOVER / STAT */
    --accent-soft: #dff7f2;

    /* TEKST – CIEMNIEJSZY */
    --text: #111827;
    --muted: #4b5563;

    /* LINIE – MOCNIEJSZE */
    --border: #cfd8e3;
}

.section {
    border: 1px solid var(--border);
}

table {
    border: 1px solid var(--border);
}

thead {
    background: #dde6ef;
}

tbody tr {
    background: var(--white);
}

tbody tr:hover {
    background: var(--accent-soft);
}
.section h3,
.section h2 {
    color: var(--primary);
    font-weight: 700;
}

td {
    color: var(--text);
}

.stat-block {
background: var(--white);
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    padding: 20px;
    position: relative;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	    transition: transform 0.15s ease, box-shadow 0.15s ease;

	
}
.stat-block::after {
    content: "";
    display: block;
    margin-top: 14px;

    width: 85%;
    background: var(--accent);   /* MIĘTA – jak wcześniej */
	position: absolute;    

    left: 20px;
    right: 20px;
    bottom: 14px;              /* ZAWSZE dół bloku */
    height: 3px;    
    background: var(--accent); /* mięta */
}

.stat-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.stat-block h3,
.stat-block h2 {
    color: var(--text);
    font-weight: 700;
}
.stat-baza::after { background: var(--primary); }
.stat-sinclair::after { background: #16a34a; }   /* wyniki = zielony */
.stat-top::after { background: #f59e0b; }        /* popularność */

.stat-block h3::before {
    content: "▌";
    color: var(--accent);
    margin-right: 8px;
}
/* Ikonki semantyczne w nagłówkach */

.stat-top h3::before {
    content: "🔥";
    margin-right: 8px;
}

.stat-sinclair h3::before {
    content: "🏆";
    margin-right: 8px;
}

.stat-baza h3::before {
    content: "🎯";
    margin-right: 8px;
}

.urodziny-list {
    max-height: 9em;          /* ok. 6 linii */
    overflow: hidden;
}

.urodziny-list.open {
    max-height: none;
}

.urodziny-more {
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
}






/* hover w tabelach – łatwiej czytać */
tbody tr:hover {
    background: var(--accent-soft);
}

/* linki wyraźne, ale spokojne */
a:hover {
    color: var(--accent);
}
