/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 13 2025 | 13:30:19 */
.cb-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cb-room {
    background: #121010;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 0 0 12px;
    position: relative;
}

.cb-room img {
    width: 100%;
    display: block;
    border-bottom: 2px solid #222;
}

.cb-room h4 {
    color: #fff;
    margin: 10px 0 5px;
    font-size: 16px;
}

.cb-meta {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 4px;
}

.cb-tags {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.cb-button {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.cb-tags {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.cb-tag-link {
    color: #00bcd4;
    text-decoration: none;
    padding: 2px 6px;
    background: rgba(0,188,212,0.1);
    border-radius: 4px;
    transition: background 0.2s;
    font-size: 12px;
}

.cb-tag-link:hover {
    background: rgba(0,188,212,0.3);
}

.cb-filters {
    text-align: center;
    margin-bottom: 15px;
}
.cb-filters button {
    margin: 0 5px;
    padding: 6px 12px;
    background: #FFF;
    color: #080705;
    border: 1px;
	border-color: #e91e63;
    border-radius: 4px;
    cursor: pointer;
}
.cb-filters button:hover {
    background: #666;
}
