<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.room-item{
    display: grid;
    grid-template-columns: 30% auto;
    grid-column-gap: 10px;
    grid-row-gap: 15px;
}
.room-item__thumb img{
    border-radius: 10px;
}
.room-item__info-title{
    font-size: 25px;
    color: black;
    font-weight: bold;
}
.room-item__info-title:hover{
    text-decoration: none;
    color: #f47820;
}
.mode-night .desc-ft,.mode-night .room-item__info-title, .mode-night .room-item__info-desc,
.mode-night .room-item__info-interact, .mode-night .post-item__type,.mode-night .post-author__desc{
    color: white!important;
}
.mode-night .post-author,.mode-night .post-reply__user,.mode-night .post-container,.mode-night .post-reply{
    background: #181818;
    color: white!important;
}
.mode-night .post-author,.mode-night .post-reply__user{
    border-right: 1px solid #000000;
}
@media only screen and (max-width: 768px) {
    .room-item {
        grid-template-columns: 50% auto;
    }
}
@media only screen and (max-width: 500px) {
    .room-item {
        display: block;
    }
}</pre></body></html>