.elementor-2137 .elementor-element.elementor-element-318b5f0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-fa37c2f *//* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* Container */
.room-container {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

/* Main Image */
.room-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Room Details */
.room-details {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.room-price {
    font-size: 1.5rem;
    color: #6ecfef;
    margin-bottom: 10px;
}

.room-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.room-info span {
    font-size: 1rem;
    color: #333;
}

/* Room Gallery Section */
h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-image {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 8px;
}

/* Room Description */
.room-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Book Now Button */
.book-now {
    background-color: #6ecfef;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.book-now:hover {
    background-color: #5cb9d6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .room-container {
        flex-direction: row;
        gap: 20px;
    }

    .room-image {
        width: 50%;
    }

    .room-details {
        width: 50%;
    }
}/* End custom CSS */