.yoga-schedule,
.yoga-signup-form-wrapper,
.yoga-signup-message {
	margin: 24px 0;
}

.yoga-schedule-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.yoga-session-card {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.yoga-session-card h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 1.2rem;
}

.yoga-session-card p {
	margin: 0 0 10px;
}

.yoga-session-card .button {
	margin-top: 8px;
}

.yoga-session-closed,
.yoga-signup-closed {
	color: #a00;
	font-weight: 600;
}

.yoga-signup-form-wrapper {
	max-width: 640px;
	padding: 24px;
	border: 1px solid #ddd;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.yoga-signup-form-wrapper h2 {
	margin-top: 0;
	margin-bottom: 18px;
}

.yoga-signup-form-wrapper p {
	margin-bottom: 16px;
}

.yoga-signup-form-wrapper label {
	font-weight: 600;
}

.yoga-signup-form-wrapper input[type="text"],
.yoga-signup-form-wrapper input[type="email"],
.yoga-signup-form-wrapper input[type="tel"],
.yoga-signup-form-wrapper textarea,
.yoga-signup-form-wrapper select {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	margin-top: 6px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
}

.yoga-signup-form-wrapper input[type="checkbox"] {
	margin-right: 8px;
}

.yoga-signup-form-wrapper button,
.yoga-signup-form-wrapper .button {
	display: inline-block;
	padding: 10px 18px;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

.yoga-signup-message {
	padding: 16px 18px;
	border-radius: 10px;
	border: 1px solid #ddd;
	background: #fafafa;
}

.yoga-signup-message p,
.yoga-signup-message h2 {
	margin: 0 0 8px;
}

.yoga-signup-message h2:last-child,
.yoga-signup-message p:last-child {
	margin-bottom: 0;
}

.yoga-signup-success {
	border-color: #b7dfb9;
	background: #f3fbf3;
}

.yoga-signup-error {
	border-color: #e3b3b3;
	background: #fff5f5;
}

.yoga-signup-closed {
	border-color: #e0c2c2;
	background: #fff7f7;
}

.yoga-privacy-text {
	padding: 12px 14px;
	border-left: 4px solid #ccc;
	background: #f7f7f7;
	font-size: 0.95rem;
}

.yoga-recaptcha-placeholder {
	font-size: 0.95rem;
	color: #666;
}

@media (max-width: 640px) {
	.yoga-session-card,
	.yoga-signup-form-wrapper {
		padding: 16px;
	}
}
.yoga-session-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 220px;
}

.yoga-session-card .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	margin-top: auto;
	border-radius: 999px;
	font-weight: 600;
	line-height: 1;
}

.yoga-session-card .yoga-session-actions {
	margin-top: auto;
	padding-top: 10px;
}

.yoga-capacity-visual {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 8px 0 14px;
}

.yoga-capacity-visual .seat {
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: #d9d9d9;
	display: inline-block;
}

.yoga-capacity-visual .seat.taken {
	background: #d97777;
}

.yoga-capacity-visual .seat.free {
	background: #7ecb8a;
}

.yoga-capacity-legend {
	display: flex;
	gap: 14px;
	align-items: center;
	font-size: 0.9rem;
	color: #666;
	margin: 8px 0 0;
}

.yoga-capacity-legend .legend-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.yoga-capacity-legend .seat {
	width: 12px;
	height: 12px;
	border-radius: 4px;
	display: inline-block;
}

.yoga-capacity-legend .seat.taken {
	background: #d97777;
}

.yoga-capacity-legend .seat.free {
	background: #7ecb8a;
}

.yoga-session-card.is-almost-full .yoga-capacity-visual .seat.free {
	background: #e7b85c;
}

.yoga-session-card.is-full .yoga-capacity-visual .seat.free {
	background: #d9d9d9;
}

.yoga-session-card.is-full .button {
	display: none;
}