#hbs-search { border: 1px solid #ddd; padding: 16px; border-radius: 6px; }
#hbs-search .hbs-form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
#hbs-search label { font-weight: 600; }
#hbs-search input { padding: 8px; min-width: 200px; }
#hbs-search #hbs-search-btn { padding: 8px 16px; }
#hbs-results { margin-top: 16px; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.hbs-card { border: 1px solid #e2e2e2; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.04); background: #fff; }
.hbs-card img { width: 100%; height: 160px; object-fit: cover; }
.hbs-card .hbs-body { padding: 12px; }
.hbs-card .hbs-title { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.hbs-card .hbs-meta { display: flex; justify-content: space-between; color: #555; font-size: 13px; margin-bottom: 8px; }
.hbs-card .hbs-actions { display: flex; justify-content: space-between; align-items: center; }
.hbs-book-btn { background: #2271b1; color: #fff; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; }
.hbs-book-btn:hover { background: #1a5e91; }

.hbs-rooms { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.hbs-room { border: 1px solid #eee; border-radius: 8px; padding: 12px; background: #fff; }
.hbs-room h3 { margin: 8px 0; }
.hbs-room .hbs-meta { display: flex; justify-content: space-between; color: #555; font-size: 13px; }

.hbs-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: none; align-items: center; justify-content: center; z-index: 9999; }
.hbs-modal { background: #fff; padding: 16px; border-radius: 8px; width: 90%; max-width: 460px; }
.hbs-modal h3 { margin-top: 0; }
.hbs-modal form { display: grid; gap: 10px; }
.hbs-modal input { padding: 8px; }
.hbs-modal .hbs-modal-actions { display: flex; justify-content: flex-end; gap: 8px; }
.hbs-hidden { display: none; }