
.room-line-selected {
    background-color: #6f42c1;
    border: #6f42c1;
    color: white;
}


.room-line-hot {
    background-color: #ff8b86;
    border: #ff8b86;
    font-size: 11px;
}

.room-line-cool {
    background-color: #8ec3c6;
    border: #8ec3c6;
    font-size: 11px;
}

.room-line-normal {
    background-color: #75c674;
    border: #75c674;
    font-size: 11px;
}


.room-line-very-hot {
    animation: blinker 2s linear infinite;
    font-size: 11px;
}

@keyframes blinker {
    0% {
      background-color: #ff8b86;
    border: #ff8b86;
    }
    50% {
        background-color: #cc000d;
        border: #cc000d;
    }
    100% {
        background-color: #ff8b86;
        border: #ff8b86;
    }
}