/* LIVE STREAM STRANICA */
.container-3 {
    display: flex;
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
}

.table-wrapper {
    flex: 3;
    padding: 20px;
    position: relative;
}

/* Stil za ivice ćelija */
.table-wrapper table th, 
.table-wrapper table td {
    border: 2px solid var(--dark-color);
    padding: 8px;
}

.table-container {
    width: calc(85% - 20px);
    height: calc(85% - 20px);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    padding: 20px;
    box-sizing: border-box;
    overflow-x: auto;
}

.table-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--dark-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

td {
    background-color: #fff;
}

/* Stilizacija podeljenih ćelija */
.split-cell {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.split-cell div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-wrapper {
    border: 2px solid var(--dark-color); /* Boja i debljina ivice (npr. tamno siva) */
    background-color: #ffffff; /* White background for the header */
    width: 100%; /* Full width to match the table */
    height: 60px; /* Height of the header */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Space between header and table */
    font-size: 14pt; /* Font size for the header */
    color: var(--dark-color); /* Text color */
}

.tekst-tabela {
    font-weight: 600;
    color: var(--dark-color); /* Primer boje - crvena */
    text-decoration: none; /* Uklanja podvučenu liniju */
    font-size: 14pt; /* Prilagodite veličinu fonta prema potrebama */
}

.tekst-tabela-1 {
    pointer-events: none;
    font-weight: 600;
    color: var(--dark-color); /* Primer boje - crvena */
    text-decoration: none; /* Uklanja podvučenu liniju */
    font-size: 14pt; /* Prilagodite veličinu fonta prema potrebama */
}

.tekst-tabela:hover {
    color: red; /* Boja pri prelasku mišem - plava */
    text-decoration: none; /* Dodaje podvučenu liniju pri prelasku mišem */
}
