.gps-slot-picker {
	background: #f7f3e8;
	border-radius: 10px;
	padding: 28px;
	margin-bottom: 32px;
	max-width: 720px;
}

.gps-slot-picker-intro h3 {
	color: #0b1f3a;
	margin: 0 0 8px;
}

.gps-slot-picker-intro p {
	font-size: 14px;
	color: #444;
	margin: 0 0 20px;
}

.gps-legend-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	vertical-align: middle;
	margin: 0 3px;
}
.gps-legend-available { background: #2e8b57; }
.gps-legend-taken { background: #c9a227; }

.gps-slot-picker-controls {
	margin-bottom: 18px;
}
.gps-slot-picker-controls label {
	display: block;
	font-weight: 700;
	color: #0b1f3a;
	margin-bottom: 6px;
	font-size: 14px;
}
#gps-tz-select {
	width: 100%;
	max-width: 360px;
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid #d1d5db;
}

.gps-slot-picker-days {
	display: flex;
	gap: 6px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.gps-day-tab {
	background: #fff;
	border: 2px solid #0b1f3a;
	color: #0b1f3a;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 20px;
	cursor: pointer;
	font-size: 13px;
}
.gps-day-tab-active {
	background: #0b1f3a;
	color: #fff;
}

.gps-slot-picker-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.gps-slot-loading {
	color: #6b7280;
	font-size: 14px;
}

.gps-slot-btn {
	position: relative;
	border: none;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	min-width: 92px;
}
.gps-slot-available {
	background: #e5f3ea;
	color: #1e5631;
	border: 2px solid #2e8b57;
}
.gps-slot-available:hover {
	background: #2e8b57;
	color: #fff;
}
.gps-slot-taken {
	background: #fbf0d9;
	color: #7a5c0e;
	border: 2px solid #c9a227;
}
.gps-slot-taken:hover {
	background: #c9a227;
	color: #fff;
}
.gps-slot-selected {
	outline: 3px solid #0b1f3a;
	outline-offset: 2px;
}
.gps-slot-count {
	display: inline-block;
	margin-left: 6px;
	background: rgba(0,0,0,0.15);
	border-radius: 10px;
	padding: 0 6px;
	font-size: 11px;
}

.gps-slot-picker-summary {
	margin-top: 20px;
	background: #fff;
	border-left: 4px solid #c9a227;
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 14px;
	color: #0b1f3a;
}

/* Hide the Enlist Full form until a slot is chosen */
#gps-full-form-wrapper.gps-hidden-until-slot {
	display: none;
}
