.lhb-search-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

:root {
    --lhb-primary-color: #3182ce;
    --lhb-primary-hover: #2b6cb0;
    --lhb-rt-img-height: 360px;
}

.lhb-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    flex: 1;
}

.lhb-form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.lhb-form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.lhb-rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.lhb-room-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lhb-room-card h3 {
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.lhb-room-details {
    margin: 15px 0;
}

.lhb-booking-form-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.lhb-submit-btn,
.lhb-search-form button {
    background: var(--lhb-primary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.lhb-submit-btn:hover,
.lhb-search-form button:hover {
    background: var(--lhb-primary-hover);
}

.lhb-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.lhb-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lhb-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Main Container Styles */
.lhb-rooms-container,
.lhb-room-types-container {
    gap: 30px;
}

.lhb-layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.lhb-layout-list {
    display: flex;
    flex-direction: column;
}

/* Room Card Styles - Modern Premium Look */
.lhb-room-card {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lhb-room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.lhb-room-image,
.lhb-room-type-image {
    width: 100%;
    height: var(--lhb-rt-img-height);
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lhb-room-image-placeholder {
    width: 100%;
    height: var(--lhb-rt-img-height);
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-weight: 500;
}

.lhb-room-card:hover .lhb-room-image {
    transform: scale(1.08);
}

.lhb-room-details-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lhb-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.lhb-room-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

.lhb-room-type-badge {
    background: #ebf8ff;
    color: #2b6cb0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lhb-room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f4f8;
}

.lhb-meta-label {
    font-size: 13px;
    color: #718096;
    margin-right: 5px;
}

.lhb-meta-value {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.lhb-price-tag {
    font-size: 22px;
    font-weight: 800;
    color: var(--lhb-primary-color);
}

.lhb-price-tag small {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 400;
}

.lhb-room-desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.lhb-room-actions {
    margin-top: auto;
}

.lhb-toggle-booking-btn {
    width: 100%;
    background: transparent;
    color: var(--lhb-primary-color);
    border: 2px solid var(--lhb-primary-color);
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.lhb-toggle-booking-btn:hover {
    background: var(--lhb-primary-color);
    color: #ffffff;
}

/* Booking Form Enhancements */
.lhb-booking-form-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #edf2f7;
}

.lhb-booking-form-inner h4 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #2d3748;
}

.lhb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lhb-form-group {
    margin-bottom: 15px;
}

.lhb-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
    display: block;
}

.lhb-form-group input {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.lhb-form-group input:focus {
    background: #ffffff;
    border-color: var(--lhb-primary-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    outline: none;
}

.lhb-form-footer {
    margin-top: 10px;
}

.lhb-submit-btn {
    width: 100%;
    background: var(--lhb-primary-color);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(49, 130, 206, 0.2);
}

/* List Layout Specifics */
.lhb-layout-list .lhb-room-card {
    flex-direction: row;
    min-height: 280px;
}

.lhb-layout-list .lhb-room-image,
.lhb-layout-list .lhb-room-type-image,
.lhb-layout-list .lhb-room-image-placeholder {
    width: 320px;
    height: 100%;
}

.lhb-layout-list .lhb-room-details-content {
    padding: 30px;
}

@media (max-width: 768px) {
    .lhb-layout-list .lhb-room-card {
        flex-direction: column;
    }

    .lhb-layout-list .lhb-room-image,
    .lhb-layout-list .lhb-room-image-placeholder {
        width: 100%;
        height: 200px;
    }

    .lhb-form-row {
        grid-template-columns: 1fr;
    }
}