.over-table {
    width: 100%;
    overflow-x: scroll;
}

table {
    font-family: 'ubuntu', 'Segoe UI', sans-serif;
    border-collapse: collapse;
    width: 100%;
}

table td,
table th {
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.4s;
    font-family: 'Segoe UI', 'ubuntu', sans-serif;
    min-width: 10rem;
    padding: 0.5rem;
}

table td {
    font-size: 12px;
}

table th span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #006428;
    color: white;
}