.scenari {
    padding: 10px 25px 10px 25px;
    margin: 10px 25px 10px 25px;
    border: solid 1px #DDDDDD;
    border-radius: 10px;
    min-width: 200px;
    min-height: 150px;
    position: relative;
    background-color: #FFFFFF;
    width: 250px;
}

.scenari:hover {
    background-color: #EEEEEE;
    border: solid 1px #03a5a7;
}

.scenari::after {
    width: 15px;
    height: 15px;
    display: block;
    border: solid 1px #DDDDDD;
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
}

.scenari:hover::after {
    background-color: #03a5a7;
    border: solid 1px #03a5a7;
}

.commentInput {
    border: solid 1px #000000;
    background: #ffffff;
    min-height: 20px;
    padding: 3px;
}

.tableFixHead {
    overflow: auto;
    height: 100px;
}

.tableFixHead thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

th.greyHover:hover {
    background: #EEEEEE;
}

.table {
    display: table;
    overflow-x: auto;
    /*white-space: nowrap;*/
    border-collapse: collapse;
}