table div {
	display: none;
}

/* Floor Navigation Buttons */
.floor-nav-container {
	position: fixed;
	bottom: 2vh;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: row;
	gap: 15px;
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.floor-btn {
	background: linear-gradient(135deg, #27B16D 0%, #27B16D 100%);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 10px 14px;
	/* reduced left/right padding */
	font-size: 14px;
	font-weight: 600;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(163, 145, 97, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 100px;
	width: auto;
	text-align: center;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	flex-shrink: 0;
}

.floor-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.floor-btn:hover::before {
	width: 300px;
	height: 300px;
}

.floor-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(163, 145, 97, 0.6);
}

.floor-btn:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(163, 145, 97, 0.4);
}

.floor-btn span {
	position: relative;
	z-index: 1;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
	.floor-nav-container {
		gap: 8px;
		bottom: 1.5vh;
		flex-wrap: nowrap;
		padding: 0 10px;
	}

	.floor-btn {
		padding: 8px 12px;
		/* reduced left/right padding */
		font-size: clamp(10px, 2.5vw, 12px);
		min-width: auto;
		max-width: none;
		border-radius: 20px;
		letter-spacing: 0.3px;
	}
}

/* Extra small screens */
@media (max-width: 480px) {
	.floor-nav-container {
		gap: 6px;
		padding: 0 5px;
	}

	.floor-btn {
		padding: 6px 10px;
		/* reduced left/right padding */
		font-size: clamp(9px, 2.2vw, 11px);
		border-radius: 18px;
	}
}