
    .status-box {
        position: absolute;
        background-color: lightgray;
        color: black;
        font-weight: bold;
        border-collapse: collapse;
        font-size: 8px;
        border: solid 1px black;
        width: 250px;
        height: 80px;
        margin-left: -30px;
    }

    .status-box th {
        width: 200px;
        padding: 2px !important;
        border-bottom: solid 1px black;

    }

    .status-box td {
        padding: 5px !important;

    }
    .status_available{
        background-color: green;
        color: white;
    }
    .status_unavailable{
        background-color: red;
    }
    .status_warning{
        background-color: rgb(255, 215, 0);
    }