.noo-rb-app {
	max-width: 100%;
	font-family: inherit;
}

.noo-rb-restricted {
	padding: 20px;
	background: #fdf3f3;
	border: 1px solid #e2b3b3;
	border-radius: 6px;
}

.noo-rb-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	border-bottom: 2px solid #e5e5e5;
}

.noo-rb-tab {
	padding: 10px 18px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	font-size: 15px;
	color: #555;
}

.noo-rb-tab.active {
	border-bottom-color: #1f4e5f;
	color: #1f4e5f;
	font-weight: 600;
}

.noo-rb-week-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.noo-rb-week-nav button {
	background: #1f4e5f;
	color: #fff;
	border: none;
	padding: 8px 14px;
	border-radius: 4px;
	cursor: pointer;
}

.noo-rb-planning {
	overflow-x: auto;
}

.noo-rb-day-column {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	margin-right: 10px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
}

.noo-rb-day-header {
	background: #1f4e5f;
	color: #fff;
	padding: 8px;
	text-align: center;
	font-weight: 600;
}

.noo-rb-room-block {
	border-top: 1px solid #eee;
	padding: 8px;
}

.noo-rb-room-name {
	font-weight: 600;
	font-size: 13px;
	color: #1f4e5f;
	margin-bottom: 6px;
}

.noo-rb-slot {
	font-size: 12px;
	padding: 4px 6px;
	margin-bottom: 4px;
	border-radius: 4px;
	cursor: default;
}

.noo-rb-slot.free {
	background: #e7f5ea;
	color: #1c6b31;
	cursor: pointer;
}

.noo-rb-slot.free:hover {
	background: #cdeed6;
}

.noo-rb-slot.busy {
	background: #f5e7e7;
	color: #8a1f1f;
}

.noo-rb-booked-by {
	font-size: 11px;
	font-style: italic;
	opacity: 0.85;
	margin-top: 2px;
}

.noo-rb-modal {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.noo-rb-modal-content {
	background: #fff;
	padding: 24px;
	border-radius: 8px;
	width: 90%;
	max-width: 420px;
	position: relative;
}

.noo-rb-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}

.noo-rb-modal-content label {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 600;
}

.noo-rb-modal-content input {
	display: block;
	width: 100%;
	padding: 8px;
	margin-top: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-weight: normal;
}

.noo-rb-btn-primary {
	background: #1f4e5f;
	color: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
}

.noo-rb-form-message {
	color: #b3261e;
	font-size: 13px;
}

.noo-rb-bookings-table {
	width: 100%;
	border-collapse: collapse;
}

.noo-rb-bookings-table th, .noo-rb-bookings-table td {
	text-align: left;
	padding: 8px;
	border-bottom: 1px solid #eee;
}

.noo-rb-cancel-btn {
	background: #b3261e;
	color: #fff;
	border: none;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
}
