/**
 * SC-ICG Room Booking - Frontend Style
 * Version: 1.2.0
 *
 * Mobile-first responsive design.
 * All selectors scoped under .sc-icg-rb-wrap.
 */

/* ==========================================================================
   Animation
   ========================================================================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Wrapper
   ========================================================================== */

.sc-icg-rb-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	color: #333333;
	line-height: 1.6;
	box-sizing: border-box;
}

.sc-icg-rb-wrap *,
.sc-icg-rb-wrap *::before,
.sc-icg-rb-wrap *::after {
	box-sizing: border-box;
}

/* ==========================================================================
   Step Indicator
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	gap: 0;
}

.sc-icg-rb-wrap .sc-icg-rb-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.sc-icg-rb-wrap .sc-icg-rb-step-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	background: #e5e7eb;
	color: #888888;
}

.sc-icg-rb-wrap .sc-icg-rb-step.active .sc-icg-rb-step-num {
	background: #0A6EB1;
	color: #ffffff;
}

.sc-icg-rb-wrap .sc-icg-rb-step.completed .sc-icg-rb-step-num {
	background: #10b981;
	color: #ffffff;
}

.sc-icg-rb-wrap .sc-icg-rb-step-text {
	font-size: 12px;
	color: #888888;
}

.sc-icg-rb-wrap .sc-icg-rb-step.active .sc-icg-rb-step-text {
	color: #0A6EB1;
	font-weight: 500;
}

.sc-icg-rb-wrap .sc-icg-rb-step-line {
	flex: 1;
	height: 2px;
	background: #e5e7eb;
	min-width: 24px;
	max-width: 60px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
	font-family: inherit;
	line-height: 1.4;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-primary {
	background: #0A6EB1;
	color: #ffffff;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-primary:hover {
	background: #0960a0;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-secondary {
	background: #ffffff;
	color: #333333;
	border: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-secondary:hover {
	background: #f3f4f6;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-full {
	width: 100%;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-lg {
	padding: 14px 24px;
	font-size: 16px;
}

/* ==========================================================================
   Section & Titles
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-section {
	animation: fadeInUp 0.3s ease-out;
}

.sc-icg-rb-wrap .sc-icg-rb-section-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-section-title--center {
	justify-content: center;
}

.sc-icg-rb-wrap .sc-icg-rb-text-center {
	text-align: center;
}

.sc-icg-rb-wrap .sc-icg-rb-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f9fafb;
	border: 1.5px solid #9ca3af;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	color: #374151;
	padding: 9px 18px;
	border-radius: 8px;
	transition: all 0.2s ease;
	font-family: inherit;
	white-space: nowrap;
	margin-bottom: 20px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.sc-icg-rb-wrap .sc-icg-rb-back-link:hover {
	background: #e5e7eb;
	border-color: #6b7280;
	color: #111827;
	box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.sc-icg-rb-wrap .sc-icg-rb-back-btn {
	background: none;
	border: none;
	font-size: 14px;
	cursor: pointer;
	color: #888888;
	padding: 4px 8px;
	border-radius: 6px;
	transition: background 0.2s ease;
	font-family: inherit;
	white-space: nowrap;
}

.sc-icg-rb-wrap .sc-icg-rb-back-btn:hover {
	background: #f3f4f6;
}

/* ==========================================================================
   Auth (Step 0) - Welcome Card
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-welcome-card {
	text-align: center;
	padding: 40px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-welcome-msg {
	font-size: 18px;
	margin-bottom: 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-link {
	display: block;
	margin-top: 12px;
	color: #888888;
	font-size: 13px;
	text-decoration: underline;
}

/* ==========================================================================
   Auth Tabs
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-auth-tabs {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 2px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-auth-tab {
	flex: 1;
	padding: 12px;
	text-align: center;
	background: none;
	border: none;
	font-size: 15px;
	cursor: pointer;
	color: #888888;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: all 0.2s ease;
	font-family: inherit;
}

.sc-icg-rb-wrap .sc-icg-rb-auth-tab.active {
	color: #0A6EB1;
	border-bottom-color: #0A6EB1;
	font-weight: 500;
}

.sc-icg-rb-wrap .sc-icg-rb-auth-panel {
	display: none;
}

.sc-icg-rb-wrap .sc-icg-rb-auth-panel.active {
	display: block;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-form {
	max-width: 400px;
	margin: 0 auto;
}

.sc-icg-rb-wrap .sc-icg-rb-form-group {
	margin-bottom: 16px;
}

.sc-icg-rb-wrap .sc-icg-rb-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 6px;
	color: #555555;
}

.sc-icg-rb-wrap .sc-icg-rb-form-group label .required {
	color: #ef4444;
}

.sc-icg-rb-wrap .sc-icg-rb-form-group input,
.sc-icg-rb-wrap .sc-icg-rb-form-group textarea,
.sc-icg-rb-wrap .sc-icg-rb-form-group select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	color: #333333;
	transition: all 0.2s ease;
	box-sizing: border-box;
	background: #ffffff;
}

.sc-icg-rb-wrap .sc-icg-rb-form-group input:focus,
.sc-icg-rb-wrap .sc-icg-rb-form-group textarea:focus,
.sc-icg-rb-wrap .sc-icg-rb-form-group select:focus {
	border-color: #0A6EB1;
	box-shadow: 0 0 0 3px rgba(10, 110, 177, 0.1);
	outline: none;
}

/* ==========================================================================
   Room Cards (Step 1)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-room-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

.sc-icg-rb-wrap .sc-icg-rb-room-card {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sc-icg-rb-wrap .sc-icg-rb-room-card:hover {
	border-color: #0A6EB1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sc-icg-rb-wrap .sc-icg-rb-room-card-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: #f3f4f6;
	display: block;
}

.sc-icg-rb-wrap .sc-icg-rb-room-card-body {
	padding: 16px;
}

.sc-icg-rb-wrap .sc-icg-rb-room-card-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.sc-icg-rb-wrap .sc-icg-rb-room-card-info {
	font-size: 13px;
	color: #888888;
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-room-card-price {
	font-size: 15px;
	font-weight: 600;
	color: #0A6EB1;
	margin-top: 8px;
}

/* ==========================================================================
   Room Detail (expandable)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-room-detail {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	margin-top: 16px;
	animation: fadeInUp 0.3s ease-out;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-header h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #888888;
	padding: 0;
	line-height: 1;
	font-family: inherit;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-body {
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-footer {
	padding: 16px 20px;
	border-top: 1px solid #e5e7eb;
	text-align: right;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-gallery {
	position: relative;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-main {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f4f6;
	aspect-ratio: 4 / 3;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-prev,
.sc-icg-rb-wrap .sc-icg-rb-gallery-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	padding: 0;
	line-height: 1;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-prev:hover,
.sc-icg-rb-wrap .sc-icg-rb-gallery-next:hover {
	background: rgba(0, 0, 0, 0.7);
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-prev {
	left: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-next {
	right: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-thumbs img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	border: 2px solid transparent;
	opacity: 0.6;
	transition: all 0.2s ease;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-thumbs img:hover {
	opacity: 0.85;
}

.sc-icg-rb-wrap .sc-icg-rb-gallery-thumbs img.active {
	border-color: #0A6EB1;
	opacity: 1;
}

/* ==========================================================================
   Info Grid
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-info-item {
	padding: 12px;
	background: #f9fafb;
	border-radius: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-info-label {
	display: block;
	font-size: 12px;
	color: #888888;
	margin-bottom: 2px;
}

.sc-icg-rb-wrap .sc-icg-rb-info-value {
	font-size: 15px;
	font-weight: 600;
}

/* ==========================================================================
   Detail Sections
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-detail-section {
	margin-bottom: 16px;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-section h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	margin-top: 0;
	color: #555555;
}

.sc-icg-rb-wrap .sc-icg-rb-detail-section p {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	white-space: pre-line;
	margin: 0;
}

/* ==========================================================================
   Equipment List (in detail)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-equipment-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-equipment-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	background: #f9fafb;
	border-radius: 6px;
	font-size: 14px;
}

.sc-icg-rb-wrap .sc-icg-rb-equipment-item .eq-price {
	font-weight: 600;
	color: #0A6EB1;
}

/* ==========================================================================
   Availability (3-day with slot list)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-availability {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sc-icg-rb-wrap .sc-icg-rb-avail-day-detail {
	padding: 12px 14px;
	border-radius: 8px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-avail-day-detail .sc-icg-rb-avail-date {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	color: #333333;
}

.sc-icg-rb-wrap .sc-icg-rb-avail-slots {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.sc-icg-rb-wrap .sc-icg-rb-avail-slot {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	background: #dcfce7;
	color: #166534;
	font-size: 12px;
	font-weight: 500;
}

.sc-icg-rb-wrap .sc-icg-rb-avail-full {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	background: #fef2f2;
	color: #ef4444;
	font-size: 12px;
	font-weight: 500;
}

/* ==========================================================================
   Calendar (Step 2)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-calendar-wrap {
	max-width: 500px;
	margin: 0 auto 24px;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-header span {
	font-size: 16px;
	font-weight: 600;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-nav {
	background: none;
	border: 1px solid #e5e7eb;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	padding: 0;
	color: #333333;
	font-family: inherit;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-nav:hover {
	background: #f3f4f6;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day-header {
	text-align: center;
	font-size: 12px;
	color: #888888;
	padding: 8px 0;
	font-weight: 500;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day {
	text-align: center;
	padding: 10px 0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day:hover {
	background: #f3f4f6;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day.selected {
	background: #0A6EB1;
	color: #ffffff;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day.today {
	font-weight: 700;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day.disabled {
	color: #cccccc;
	cursor: default;
	pointer-events: none;
}

.sc-icg-rb-wrap .sc-icg-rb-calendar-day.empty {
	visibility: hidden;
}

/* ==========================================================================
   Time Slots (Step 2)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-slots-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	text-align: center;
}

.sc-icg-rb-wrap .sc-icg-rb-slots-hint {
	font-size: 12px;
	color: #888888;
	margin-bottom: 12px;
	text-align: center;
}

.sc-icg-rb-wrap .sc-icg-rb-slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 8px;
	margin-bottom: 16px;
}

.sc-icg-rb-wrap .sc-icg-rb-slot {
	padding: 12px 8px;
	text-align: center;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid #e5e7eb;
	transition: all 0.2s ease;
	background: #ffffff;
}

.sc-icg-rb-wrap .sc-icg-rb-slot:hover {
	border-color: #0A6EB1;
}

.sc-icg-rb-wrap .sc-icg-rb-slot.selected {
	background: #0A6EB1;
	color: #ffffff;
	border-color: #0A6EB1;
}

.sc-icg-rb-wrap .sc-icg-rb-slot.booked {
	background: #fee2e2;
	color: #ef4444;
	cursor: default;
	pointer-events: none;
	border-color: transparent;
}

.sc-icg-rb-wrap .sc-icg-rb-slot.reserved {
	background: #f3f4f6;
	color: #9ca3af;
	cursor: default;
	pointer-events: none;
	border-color: transparent;
}

.sc-icg-rb-wrap .sc-icg-rb-slot .slot-time {
	font-weight: 500;
}

.sc-icg-rb-wrap .sc-icg-rb-slot .slot-label {
	font-size: 11px;
	margin-top: 2px;
	display: block;
}

/* ==========================================================================
   Confirm (Step 3)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-confirm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.sc-icg-rb-wrap .sc-icg-rb-confirm-summary {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	padding: 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-confirm-summary h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	margin-top: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-summary-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 14px;
}

.sc-icg-rb-wrap .sc-icg-rb-summary-label {
	color: #888888;
}

.sc-icg-rb-wrap .sc-icg-rb-summary-value {
	font-weight: 500;
}

.sc-icg-rb-wrap .sc-icg-rb-confirm-equipment {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	padding: 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-confirm-equipment h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	margin-top: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
}

/* ==========================================================================
   Equipment Select (checkboxes with quantity)
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-equipment-select {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item.checked {
	border-color: #0A6EB1;
	background: rgba(10, 110, 177, 0.03);
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item input[type="checkbox"] {
	accent-color: #0A6EB1;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item .eq-name {
	flex: 1;
	font-size: 14px;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item .eq-price {
	font-size: 13px;
	color: #0A6EB1;
	font-weight: 500;
	white-space: nowrap;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item .eq-qty {
	width: 60px;
	padding: 4px 8px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
	font-family: inherit;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-item .eq-avail {
	font-size: 12px;
	color: #6b7280;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-unavailable {
	opacity: 0.5;
}

.sc-icg-rb-wrap .sc-icg-rb-eq-unavailable .eq-price {
	color: #ef4444;
}

/* ==========================================================================
   Price Summary
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-price-summary {
	background: #f9fafb;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-price-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	font-size: 14px;
	color: #666666;
}

.sc-icg-rb-wrap .sc-icg-rb-price-total {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 700;
	border-top: 1px solid #e5e7eb;
	margin-top: 8px;
}

/* ==========================================================================
   People Select
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-people-select {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-people-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sc-icg-rb-wrap .sc-icg-rb-people-btn {
	width: 36px;
	height: 36px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	color: #333333;
	font-family: inherit;
	padding: 0;
	line-height: 1;
}

.sc-icg-rb-wrap .sc-icg-rb-people-btn:hover {
	background: #0A6EB1;
	color: #ffffff;
	border-color: #0A6EB1;
}

.sc-icg-rb-wrap .sc-icg-rb-people-count {
	font-size: 24px;
	font-weight: 700;
	min-width: 40px;
	text-align: center;
	color: #0A6EB1;
}

.sc-icg-rb-wrap .sc-icg-rb-people-hint {
	font-size: 15px;
	color: #666666;
}

.sc-icg-rb-wrap .sc-icg-rb-people-note {
	font-size: 12px;
	color: #888888;
	margin-top: 6px;
	margin-bottom: 0;
}

/* ==========================================================================
   Success
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-success-card {
	text-align: center;
	padding: 48px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-success-icon {
	width: 64px;
	height: 64px;
	background: #10b981;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 20px;
}

.sc-icg-rb-wrap .sc-icg-rb-success-card h2 {
	font-size: 22px;
	margin-bottom: 12px;
	margin-top: 0;
}

.sc-icg-rb-wrap .sc-icg-rb-success-card p {
	color: #666666;
	margin-bottom: 8px;
}

.sc-icg-rb-wrap .sc-icg-rb-success-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 16px;
}

/* ==========================================================================
   My Bookings
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-my-bookings-stats {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.sc-icg-rb-wrap .sc-icg-rb-my-stats-card {
	background: #0A6EB1;
	color: #ffffff;
	border-radius: 12px;
	padding: 20px 24px;
	text-align: center;
	min-width: 160px;
}

.sc-icg-rb-wrap .sc-icg-rb-my-stats-label {
	font-size: 13px;
	opacity: 0.85;
	margin-bottom: 4px;
}

.sc-icg-rb-wrap .sc-icg-rb-my-stats-value {
	font-size: 28px;
	font-weight: 700;
}

.sc-icg-rb-wrap .sc-icg-rb-my-encourage-card {
	flex: 1;
	background: #f0fdf4;
	border-radius: 12px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	border: 1px solid #bbf7d0;
}

.sc-icg-rb-wrap .sc-icg-rb-my-encourage-card p {
	margin: 0;
	font-size: 15px;
	color: #166534;
	line-height: 1.6;
}

.sc-icg-rb-wrap .sc-icg-rb-my-bookings-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sc-icg-rb-wrap .sc-icg-rb-my-booking-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	transition: all 0.2s ease;
}

.sc-icg-rb-wrap .sc-icg-rb-my-booking-info {
	flex: 1;
}

.sc-icg-rb-wrap .sc-icg-rb-my-booking-date {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 2px;
}

.sc-icg-rb-wrap .sc-icg-rb-my-booking-detail {
	font-size: 13px;
	color: #666666;
}

.sc-icg-rb-wrap .sc-icg-rb-my-booking-status {
	display: inline-block;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 4px;
	margin-top: 4px;
}

.sc-icg-rb-wrap .sc-icg-rb-status-confirmed {
	background: #dcfce7;
	color: #166534;
}

.sc-icg-rb-wrap .sc-icg-rb-status-pending {
	background: #fef9c3;
	color: #854d0e;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-cancel-booking {
	background: #ffffff;
	color: #ef4444;
	border: 1px solid #ef4444;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	white-space: nowrap;
	margin-left: 12px;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-cancel-booking:hover {
	background: #ef4444;
	color: #ffffff;
}

/* ==========================================================================
   Loading
   ========================================================================== */

.sc-icg-rb-wrap .sc-icg-rb-loading {
	text-align: center;
	color: #888888;
	padding: 20px;
}

/* ==========================================================================
   Responsive - Tablet (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
	.sc-icg-rb-wrap .sc-icg-rb-detail-body {
		grid-template-columns: 1fr;
	}

	.sc-icg-rb-wrap .sc-icg-rb-confirm-grid {
		grid-template-columns: 1fr;
	}

	.sc-icg-rb-wrap .sc-icg-rb-my-bookings-stats {
		flex-direction: column;
	}

	.sc-icg-rb-wrap .sc-icg-rb-steps {
		gap: 0;
	}

	.sc-icg-rb-wrap .sc-icg-rb-step-text {
		display: none;
	}

	.sc-icg-rb-wrap .sc-icg-rb-step-line {
		min-width: 16px;
		max-width: 40px;
	}

	.sc-icg-rb-wrap .sc-icg-rb-room-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

/* ==========================================================================
   Responsive - Mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
	.sc-icg-rb-wrap {
		padding: 12px;
	}

	.sc-icg-rb-wrap .sc-icg-rb-slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sc-icg-rb-wrap .sc-icg-rb-form-group input,
	.sc-icg-rb-wrap .sc-icg-rb-form-group textarea,
	.sc-icg-rb-wrap .sc-icg-rb-form-group select {
		font-size: 16px;
	}

	.sc-icg-rb-wrap .sc-icg-rb-welcome-card {
		padding: 24px 16px;
	}

	.sc-icg-rb-wrap .sc-icg-rb-success-card {
		padding: 32px 16px;
	}

	.sc-icg-rb-wrap .sc-icg-rb-info-grid {
		grid-template-columns: 1fr;
	}

	.sc-icg-rb-wrap .sc-icg-rb-room-grid {
		grid-template-columns: 1fr;
	}
}

/* =============================
 * Admin Bar (Frontend)
 * ============================= */
.sc-icg-rb-wrap .sc-icg-rb-admin-bar-front {
	margin-bottom: 16px;
	text-align: right;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-admin-back {
	display: inline-block;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	background: #1d2327;
	border: none;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s;
}

.sc-icg-rb-wrap .sc-icg-rb-btn-admin-back:hover {
	background: #2c3338;
	color: #fff;
	text-decoration: none;
}

/* =============================
 * Footer
 * ============================= */
.sc-icg-rb-wrap .sc-icg-rb-footer {
	text-align: center;
	padding: 24px 0 8px;
	margin-top: 32px;
	border-top: 1px solid #e5e7eb;
}

.sc-icg-rb-wrap .sc-icg-rb-footer p {
	font-size: 12px;
	color: #9ca3af;
	margin: 0;
}

.sc-icg-rb-wrap .sc-icg-rb-footer a {
	color: #6b7280;
	text-decoration: none;
}

.sc-icg-rb-wrap .sc-icg-rb-footer a:hover {
	color: #374151;
}
