@import url('https://fonts.googleapis.com/css2?family=Prompt&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Prompt";
}

table {
    width: 800px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.table td.fit {
    white-space: nowrap;
    width: 1%;
}

.table th.fit {
    white-space: nowrap;
    width: 1%;
    vertical-align: middle;
}

.badge {
    background-color: #F6BF09;
    color: white;
    font-size: 14px;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
}

thead {
    th {
        background-color: #F6BF09;
        /* background: linear-gradient(10deg, #F6BF09, #003744); */
        color: #fff;
    }
}

tbody {
    tr {
        &:hover {
            background-color: rgba(176, 196, 222, 0.3);
        }
    }

    td {
        position: relative;
        background-color: rgba(176, 196, 222, 0.1);

        &:hover {
            &:before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                top: -9999px;
                bottom: -9999px;
                background-color: rgba(230, 230, 250, 0.2);
                z-index: -1;
            }
        }
    }
}

#inlist {
    overflow: hidden;
    word-wrap: normal | break-word;
}


.badge {
    background-color: #00CCFF;
    color: black;
    font-size: 16px;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
}