.picker-container {
	background: white;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
	width: 100%;
	border: 1px solid #e2e8f0;
}

.picker-header {
	text-align: center;
	margin-bottom: 16px;
}

.picker-title {
	font-size: 18px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 4px;
}

.picker-subtitle {
	color: #64748b;
	font-size: 13px;
}

.section {
	margin-bottom: 16px;
}

.section-title {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.section-icon {
	width: 16px;
	height: 16px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 10px;
}

/* Calendar Styles */
.calendar-container {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.calendar-header {
	background: #7CCDCE;
	color: white;
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.calendar-nav-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.calendar-nav-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.calendar-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.calendar-month-year {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	flex: 1;
}

.calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	background: #f8fafc;
}

.calendar-day-header {
	padding: 8px 4px;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
}

.calendar-day {
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f1f5f9;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	font-weight: 500;
	background: white;
	font-size: 12px;
	margin: 0;
}

.calendar-day:hover {
	background: #f0f4ff;
	z-index: 2;
}

.calendar-day.other-month {
	color: #cbd5e1;
	background: #f8fafc;
}

.calendar-day.other-month:hover {
	background: #f1f5f9;
}

.calendar-day.today {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: white;
	font-weight: 600;
}

.calendar-day.selected {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	z-index: 3;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.calendar-day.has-slots {
	position: relative;
}

.calendar-day.has-slots::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	background: #10b981;
	border-radius: 50%;
}

.calendar-day.selected.has-slots::after {
	background: rgba(255, 255, 255, 0.8);
}

.calendar-day.unavailable {
	background: #f8fafc;
	color: #cbd5e1;
	cursor: not-allowed;
}

.calendar-day.unavailable:hover {
	background: #f8fafc;
}

.calendar-day.unavailable::after {
	display: none;
}

/* Time Slots Styles */
.time-slots {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.time-slot {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 10px 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

.time-slot:hover {
	border-color: #667eea;
	background: #f8fafc;
}

.time-slot.selected {
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-color: #667eea;
	color: white;
}

.time-slot.unavailable {
	background: #f8fafc;
	color: #cbd5e1;
	cursor: not-allowed;
	border-color: #f1f5f9;
}

.time-slot.unavailable:hover {
	background: #f8fafc;
	border-color: #f1f5f9;
}

.time-text {
	font-weight: 500;
	font-size: 13px;
}

.availability-badge {
	background: #10b981;
	color: white;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 500;
}

.time-slot.unavailable .availability-badge {
	background: #ef4444;
}

.time-slot.selected .availability-badge {
	background: rgba(255, 255, 255, 0.2);
}

.loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #64748b;
	font-size: 13px;
}

.spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #e2e8f0;
	border-top: 2px solid #667eea;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-right: 8px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.confirmation {
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	padding: 12px;
	border-radius: 8px;
	margin-top: 8px;
	text-align: center;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	font-size: 13px;
}

.confirmation.show {
	opacity: 1;
	transform: translateY(0);
}

.empty-state {
	text-align: center;
	padding: 20px;
	color: #64748b;
	font-size: 13px;
}

.empty-icon {
	font-size: 24px;
	margin-bottom: 8px;
	opacity: 0.5;
}

.calendar-legend {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
	padding: 8px;
	background: #f8fafc;
	border-radius: 6px;
	font-size: 10px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.legend-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.legend-dot.available {
	background: #10b981;
}

.legend-dot.today {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.legend-dot.selected {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

@media (max-width: 768px) {
	.picker-container {
		padding: 12px;
		margin: 8px;
	}

	.calendar-header {
		padding: 10px 12px;
	}

	.calendar-month-year {
		font-size: 13px;
	}

	.calendar-day {
		height: 28px;
		font-size: 11px;
	}

	.calendar-legend {
		flex-direction: column;
		gap: 6px;
		text-align: center;
	}
}