
.bin-table {
    margin-top: 0.5rem;
}

.bin-table-table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

.bin-table-title {
    border-style: double;
    border-width: 3px;
    border-color: #000;
    padding: 0.4rem 0.6rem;
    font-weight: bold;
    text-align: center;
}

.bin-table-header {
    border-style: double;
    border-width: 3px;
    border-color: #000;
    padding: 0.4rem 0.6rem;
    font-weight: bold;
    text-align: center;
}

.bin-table-cell {
    border-style: double;
    border-width: 3px;
    border-color: #000;
    padding: 0.4rem 0.6rem;
    text-align: center;
}

.bin-text {
    color: blue;
}

.bin-text-warning {
    color: red;
    font-weight: bold;
}

.blink-text {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

