.room-single-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.room-title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.room-details p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.room-details strong {
    font-weight: bold;
    color: #333;
}

/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
    .room-details-hide-tablet {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    .room-single-container {
        padding: 10px;
    }

    .room-title {
        font-size: 1.5em;
    }

    .room-details p {
        font-size: 1em;
    }
    
    .room-details-hide-phone {
        display: none !important;
    }
}
