.allTables {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    width: fit-content;
    min-width: 1200px;
    margin: auto;
    overflow-x: auto;
    min-width: 100%;
}

thead {
    position: sticky;
    top: 0px;
}
.allTables tr th {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: darkblue;
    padding: 5px;
    max-width: 100px;
}
.allTables td {
    text-align: center;
    padding: 8px;
    max-width: 100px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-overflow: ellipsis;
}

.allTables tr:nth-child(even) {
    background-color: rgb(200, 200, 200);
}

/*tooltip*/
.tooltip {
    position: relative;
}

.tooltipText {
    position: absolute;
    font-size: 15px;
    width: max-content;
    top: -25px;
    visibility: hidden;
    /*plynuly prechod tooltipu*/
    opacity: 0;
    transition-duration: 0.5s;
    transition-timing-function: ease-in;
    background: rgb(247, 31, 31);
    color: white;
    padding: 5px;
}

.tooltip:hover {
    cursor: pointer;
}

.tooltip:hover .tooltipText {
    visibility: visible;
    opacity: 1;
}

.returnedTitle {
    color: green;
    font-size: 1.3em;
}

.returnedTitle:hover {
    transform: scale(1.1);
    color: lightgreen;
    cursor: pointer;
}

.prolongedTitle {
    color: blue;
    font-size: 1.3em;
}

.prolongedTitle:hover {
    transform: scale(1.1);
    color: lightblue;
    cursor: pointer;
}

.iconDetail {
    color: green;
    font-size: 1.3em;
}

.iconDetail:hover {
    transform: scale(1.1);
    color: lightgreen;
    cursor: pointer;
}
