.final-rental-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.rental-listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.rental-card { border: 1px solid #eee; padding: 10px; border-radius: 5px; }
.rental-card img { width: 100%; height: auto; }
.rental-gallery { display: flex; gap: 10px; overflow-x: auto; margin: 20px 0; }
.rental-gallery-img { height: 200px; width: auto; }
.rental-booking-section { background: #f9f9f9; padding: 20px; border-radius: 5px; margin-top: 30px; }
.form-group { margin-bottom: 10px; }
.form-group input { width: 100%; padding: 8px; }
.form-actions { display: flex; gap: 10px; }
.rental-pay-btn { background: #0073aa; color: #fff; padding: 10px 20px; border: none; cursor: pointer; }
.rental-pay-btn:hover { background: #005177; }
.rental-search-wrapper { position: relative; max-width: 600px; margin-bottom: 20px; }
#rental-search-input { width: 100%; padding: 10px; }
#rental-search-results { position: absolute; background: #fff; border: 1px solid #ddd; width: 100%; z-index: 99; display: none; }
.rental-search-item { padding: 10px; display: block; text-decoration: none; color: #333; border-bottom: 1px solid #eee; }
.rental-search-item:hover { background: #f0f0f0; }
