.stramu-timetable {
	--stramu-primary: rgb(51, 102, 153);
	--stramu-secondary: rgb(102, 204, 204);
	--stramu-text: #333;
	--stramu-text-secondary: #666;
	--stramu-bg: #fff;
	--stramu-border: #eee;
	--stramu-live: rgb(51, 102, 153);

	font-family: inherit;
	color: var(--stramu-text);
}

/* Day selector */
.stramu-days {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 0 16px;
	-webkit-overflow-scrolling: touch;
}

.stramu-timetable .stramu-day {
	cursor: pointer;
	background-color: var(--stramu-secondary) !important;
	color: #fff !important;
	border: 2px solid var(--stramu-secondary) !important;
	text-transform: uppercase !important;
	transform: none !important;
	transition: background-color 0.2s, color 0.2s !important;
}

.stramu-timetable .stramu-day:hover,
.stramu-timetable .stramu-day.stramu-day--active {
	background-color: #fff !important;
	color: var(--stramu-secondary) !important;
	border-color: var(--stramu-secondary) !important;
}

/* Performance link */
.stramu-performance__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.stramu-performance__link:hover {
	text-decoration: none;
	color: inherit;
}

/* Performance list */
.stramu-performances {
	display: flex;
	flex-direction: column;
}

/* Performance card */
.stramu-performance {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--stramu-border);
}

.stramu-performance:last-child {
	border-bottom: none;
}

/* Image */
.stramu-performance__image {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
}

.stramu-performance__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.stramu-performance__placeholder {
	width: 100%;
	height: 100%;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Info */
.stramu-performance__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.stramu-performance__artist {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.stramu-performance__place {
	font-size: 0.85rem;
	color: var(--stramu-text-secondary);
}

/* Time */
.stramu-performance__time {
	flex-shrink: 0;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.stramu-performance__range {
	font-size: 0.9rem;
	font-weight: 500;
	white-space: nowrap;
}

.stramu-performance__live {
	display: inline-block;
	background: var(--stramu-live);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Error / empty states */
.stramu-timetable--error,
.stramu-timetable--empty {
	padding: 32px 16px;
	text-align: center;
	color: var(--stramu-text-secondary);
}

/* Responsive */
@media (max-width: 600px) {
	.stramu-performance__image {
		width: 48px;
		height: 48px;
	}

}
