/* Property Rooms Component */

.property-rooms-section {
	padding: 3rem 0;
	background-color: var(--k-0);
}

.rooms-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
	max-width: 900px;
}

.rooms-table th,
.rooms-table td {
	padding: 0.875rem 1rem;
	text-align: left;
	border-bottom: 1px solid #dee2e6;
}

.rooms-table thead th {
	background-color: #f8f9fa;
	font-weight: 600;
	color: var(--era-navy);
	border-bottom: 2px solid #dee2e6;
}

.rooms-table td {
	color: var(--k-70);
}

.rooms-table tbody tr:hover {
	background-color: #f8f9fa;
}

/* Responsive */
@media (max-width: 767px) {
	.property-rooms-section {
		padding: 2rem 0;
	}

	.rooms-table {
		font-size: 0.875rem;
	}

	.rooms-table th,
	.rooms-table td {
		padding: 0.75rem 0.5rem;
	}
}
