* {
    touch-action: manipulation;
}

table {
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}

tr,
td,
th {
    border: 1px solid black;
    vertical-align: middle;
    color: #000000;

}

td>input {
    text-align: center;
    width: calc(100% - 4px);
    border: none;
    background-color: inherit;
}

td>div>input[type="number"] {
    text-align: right;
    width: 40px;
    border: none;
    background-color: inherit;
}

/* .current_status img ,
.last_month_status img{
    display: block;
    margin: auto;
} */

.current_status_input,
.last_month_status_input {
    display: block;
    margin: auto;
    width: 75px;
    height: 75px;
}

.badge_status_header {
    min-width: 65px;
}

#name_header {
    min-width: 200px;
}


.span_continuous_string,
.span_total_string {
    font-size: 10px;
}

#delete_popup_background {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
}

#delete_popup {
    border: 5px solid black;
    border-radius: 10px;
    padding: 5px;
    background: white;
    position: absolute;
    width: 600px;
    height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 30px;
    font-weight: 1000;
    color: red;
}

#delete_popup_sub {
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    color: black;
}

#data_transfer_string {
    word-wrap: break-word;
}

@media (max-width:1000px) {

    #contents {
        width: 100%;
    }

}


@media (max-width:600px) {


    .current_status_input,
    .last_month_status_input {
        display: block;
        margin: auto;
        width: 50px;
        height: 50px;
    }

    #name_header {
        min-width: 75px;
    }

    .badge_status_header {
        min-width: 35px;
    }

    tr,
    td,
    th {
        border: 1px solid black;
        vertical-align: middle;
        font-size: 10px;
    }

    td>div>input[type="number"] {
        text-align: right;
        width: 25px;
        border: none;
    }

    td>input {
        font-size: 10px;
        text-align: center;
        width: calc(100% - 4px);
        border: none;
    }


}