/* kontejner tabulky */
.table-list {
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    border-collapse: separate;
    border-spacing: 0;
}

/* hlavička */
.table-list thead th {
    background-color: #4A7A4A; /* tmavší zelená */
    color: #fff;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #3f6b3f;
}

/* řádky - liché */
.table-list tbody tr:nth-child(odd) {
    background-color: #EBF7EB; /* světlá zelená */
}

/* řádky - sudé */
.table-list tbody tr:nth-child(even) {
    background-color: #F6FBF6; /* ještě světlejší */
}

/* zvýraznění řádku při přejetí myší */
.table-list tbody tr:hover {
    background-color: #D5EAD5;
    cursor: pointer;
}

/* buňky */
.table-list td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #ddd;
}

/* malé texty, drobné poznámky */
.table-list .small {
    font-size: 0.85rem;
    color: #666;
}

/* akcentní třída pro pozornost */
.table-list .highlight {
    font-weight: bold;
    color: #3F6B3F;
}

/* oddělení buněk */
.table-list th,
.table-list td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #ddd;
	box-shadow: inset -1px 0 0 #e3efe3;
}

/* svislé oddělovače mezi sloupci */
.table-list th:not(:last-child),
.table-list td:not(:last-child) {
    border-right: 1px solid #d9e6d9; /* jemná zelenošedá linka */
}

/* výraznější oddělení hlavičky */
.table-list thead th:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.25);
}

.td-center {
    text-align: center;
}

.td-number {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

