body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #f7f7f7 60%, #e3eaff 100%);
  min-height: 100vh;
  transition: background 0.5s;
}

header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #12385f 0%, #285fa8 45%, #4c9d88 100%);
  color: #fff;
  padding: 2.1em 1em 1.45em 1em;
  text-align: center;
  box-shadow: 0 14px 32px rgba(22, 58, 99, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  animation: fadeInDown 0.7s;
}

header::before {
	content: '';
	position: absolute;
	inset: auto auto -55px -40px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
	pointer-events: none;
}

header::after {
	content: '';
	position: absolute;
	top: -70px;
	right: -10px;
	width: 260px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 214, 102, 0.22) 0%, rgba(255, 214, 102, 0) 74%);
	pointer-events: none;
}

header h1 {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-shadow: 0 10px 26px rgba(11, 27, 49, 0.22);
}

@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-40px); }
	to { opacity: 1; transform: translateY(0); }
}
nav {
	background: linear-gradient(90deg, #4f8cff 0%, #6ee7b7 100%);
	color: #fff;
	padding: 1.1em 0.5em 1.1em 0.5em;
	text-align: center;
	box-shadow: 0 4px 18px rgba(79,140,255,0.10);
	border-bottom-left-radius: 18px;
	border-bottom-right-radius: 18px;
	margin-bottom: 1.5em;
	animation: fadeInDown 1.1s;
}
nav a {
	color: #fff;
	margin: 0 1.3em;
	text-decoration: none;
	font-weight: 600;
	padding: 0.7em 1.7em;
	border-radius: 30px;
	font-size: 1.08em;
	background: rgba(255,255,255,0.07);
	box-shadow: 0 2px 8px rgba(79,140,255,0.08);
	transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
	display: inline-block;
	position: relative;
}
nav a:hover, nav a.active {
	background: #fff;
	color: #4f8cff;
	box-shadow: 0 4px 18px rgba(79,140,255,0.18);
	transform: translateY(-2px) scale(1.04);
}
.container {
	max-width: 900px;
	margin: 2.5em auto;
	background: #fff;
	padding: 2.5em 2em;
	border-radius: 14px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.10);
	transition: box-shadow 0.2s, transform 0.2s;
	animation: fadeInUp 0.7s;
}
.container:hover {
	box-shadow: 0 8px 32px rgba(79,140,255,0.18);
	transform: translateY(-2px) scale(1.01);
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}
.container h1 {
	color: #2a3a5a;
	font-size: 2.2em;
	margin-bottom: 0.5em;
}
.container p {
	color: #4a4a4a;
	font-size: 1.1em;
	margin-bottom: 2em;
}
.container ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
	justify-content: center;
}
.container li {
	margin: 0;
}
.container a {
	display: inline-block;
	background: linear-gradient(90deg, #4f8cff 60%, #6ee7b7 100%);
	color: #fff;
	font-weight: 600;
	padding: 0.9em 2.2em;
	border-radius: 30px;
	font-size: 1.1em;
	box-shadow: 0 2px 8px rgba(79,140,255,0.10);
	text-decoration: none;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s, letter-spacing 0.2s;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}
.container a::after {
	content: '';
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	background: rgba(255,255,255,0.08);
	opacity: 0;
	transition: opacity 0.2s;
	border-radius: 30px;
}
.container a:hover {
	background: linear-gradient(90deg, #6ee7b7 60%, #4f8cff 100%);
	color: #222;
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 6px 24px rgba(79,140,255,0.18);
	letter-spacing: 1.5px;
}
.container a:hover::after {
	opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
	background: #e3eaff;
}
::-webkit-scrollbar-thumb {
	background: #4f8cff;
	border-radius: 10px;
}

/* Responsive design */
@media (max-width: 600px) {
	.container {
		padding: 1em 0.5em;
	}
	.container h1 {
		font-size: 1.3em;
	}
	.container ul {
		flex-direction: column;
		gap: 1em;
	}
	nav a {
		margin: 0 0.3em;
		padding: 0.4em 0.7em;
		font-size: 1em;
	}
}
.timeline-bar {
	width: 100%;
	height: 30px;
	background: #eee;
	border-radius: 15px;
	margin: 2em 0;
	position: relative;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.timeline-progress {
	height: 100%;
	background: linear-gradient(90deg, #4f8cff 60%, #6ee7b7 100%);
	border-radius: 15px 0 0 15px;
	position: absolute;
	top: 0;
	left: 0;
	transition: width 0.3s;
}

.timeline-page {
	max-width: 1120px;
	padding: 2.5em;
}

.timeline-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
	gap: 1.4em;
	margin-bottom: 1.6em;
	padding: 2em;
	border-radius: 28px;
	background: linear-gradient(135deg, #163a63 0%, #285fa8 52%, #4c9d88 100%);
	color: #fff;
	box-shadow: 0 22px 40px rgba(22, 58, 99, 0.18);
}

.timeline-badge {
	display: inline-block;
	padding: 0.45em 0.95em;
	margin-bottom: 1em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.timeline-hero h1 {
	margin: 0 0 0.35em;
	font-size: 2.35em;
	color: #fff;
}

.timeline-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	max-width: 640px;
}

.timeline-meta {
	display: grid;
	gap: 0.85em;
	padding: 1.2em;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.timeline-meta div {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
	padding-bottom: 0.75em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-meta div:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.timeline-meta strong,
.timeline-status-card__label {
	font-size: 0.84em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.72);
}

.timeline-meta span {
	font-size: 1.08em;
	font-weight: 700;
}

.timeline-status-card,
.timeline-items-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(79, 140, 255, 0.14);
	border-radius: 24px;
	padding: 1.7em;
	box-shadow: 0 14px 30px rgba(44, 62, 80, 0.08);
	margin-bottom: 1.5em;
}

.timeline-status-card__top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1em;
	margin-bottom: 1em;
}

.timeline-status-card__top strong,
.timeline-now-playing strong {
	display: block;
	margin-top: 0.2em;
	font-size: 1.9em;
	color: #1e2d45;
}

.timeline-bar {
	height: 22px;
	margin: 1.25em 0;
	background: #e8eef8;
	box-shadow: inset 0 2px 6px rgba(44, 62, 80, 0.08);
	overflow: hidden;
}

.timeline-progress {
	border-radius: 15px;
	background: linear-gradient(90deg, #ef8f00 0%, #f0c419 36%, #6dd1a2 100%);
}

.timeline-now-playing {
	padding: 1.1em 1.15em;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(237, 244, 255, 0.8) 0%, rgba(255, 249, 230, 0.7) 100%);
	border: 1px solid rgba(79, 140, 255, 0.14);
}

.timeline-now-playing p {
	margin: 0.45em 0 0;
	color: #50627e;
}

.timeline-items-list {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.timeline-item {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 1em;
	padding: 1.1em;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(79, 140, 255, 0.12);
	box-shadow: 0 8px 18px rgba(44, 62, 80, 0.05);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, opacity 0.2s;
}

.timeline-item.is-active {
	border-color: rgba(40, 95, 168, 0.52);
	box-shadow: 0 18px 34px rgba(40, 95, 168, 0.16);
	transform: translateY(-2px);
}

.timeline-item.is-done {
	opacity: 0.72;
}

.timeline-item__time {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.9em 0.7em;
	border-radius: 16px;
	background: #edf4ff;
	color: #285fa8;
	font-weight: 700;
	font-size: 1.05em;
}

.timeline-item__topline {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.7em;
	margin-bottom: 0.45em;
}

.timeline-item__type,
.timeline-item__duration {
	display: inline-flex;
	align-items: center;
	padding: 0.35em 0.7em;
	border-radius: 999px;
	font-size: 0.85em;
	font-weight: 700;
	background: rgba(79, 140, 255, 0.12);
	color: #285fa8;
}

.timeline-item__content h3 {
	margin: 0 0 0.35em;
	color: #1e2d45;
}

.timeline-item__content p {
	margin: 0.3em 0 0;
	color: #55657f;
}

.timeline-item__editor {
	margin-top: 0.55em;
	display: flex;
	flex-direction: column;
	gap: 0.7em;
}

.timeline-item__textarea {
	width: 100%;
	min-height: 128px;
	padding: 0.95em 1em;
	border-radius: 14px;
	border: 1px solid rgba(79, 140, 255, 0.18);
	background: #fbfdff;
	font: inherit;
	color: #25324a;
	box-sizing: border-box;
	resize: none;
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.timeline-item__textarea:focus {
	outline: none;
	border-color: #4f8cff;
	box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.12);
	background: #fff;
}

.timeline-item__editor-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8em;
	flex-wrap: wrap;
}

.timeline-item__update-button {
	padding: 0.78em 1.15em;
	border: none;
	border-radius: 999px;
	background: linear-gradient(90deg, #285fa8 0%, #4f8cff 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 16px rgba(40, 95, 168, 0.16);
}

.timeline-item__complete-button {
	padding: 0.78em 1.15em;
	border: 1px solid rgba(40, 95, 168, 0.18);
	border-radius: 999px;
	background: #fff;
	color: #285fa8;
	font-weight: 700;
	cursor: pointer;
}

.timeline-item__complete-button.is-completed {
	background: rgba(76, 157, 136, 0.12);
	border-color: rgba(76, 157, 136, 0.28);
	color: #2c7a68;
}

.timeline-item__sync-status {
	font-size: 0.92em;
	font-weight: 600;
	color: #4c9d88;
}

.timeline-item__sync-status.is-error {
	color: #b42318;
}

.timeline-item__presence {
	margin: 0;
	font-size: 0.92em;
	color: #64748b;
}

.timeline-item__presence.is-active {
	color: #285fa8;
	font-weight: 700;
}

.timeline-item__timing-advice {
	margin: 0;
	font-size: 0.92em;
	font-weight: 600;
	color: #2c7a68;
}

.timeline-item__timing-advice.is-warning {
	color: #b42318;
}

.timeline-item__editor-actions--compact {
	margin-top: 0.65em;
	justify-content: flex-start;
}

.timeline-item__subline {
	font-weight: 700;
	color: #285fa8;
}

.timeline-item--talk {
	border-color: rgba(220, 53, 69, 0.38);
}

.timeline-item--jingle {
	border-color: rgba(255, 193, 7, 0.5);
}

.timeline-item--call {
	border-color: rgba(13, 110, 253, 0.38);
}

.waiting-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2em;
	background: radial-gradient(circle at top, rgba(79, 140, 255, 0.2) 0%, rgba(247, 247, 247, 0.96) 48%, #eef4ff 100%);
}

.waiting-card {
	max-width: 640px;
	padding: 2.4em;
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(79, 140, 255, 0.14);
	box-shadow: 0 20px 44px rgba(44, 62, 80, 0.12);
	text-align: center;
}

.waiting-badge {
	display: inline-block;
	margin-bottom: 1em;
	padding: 0.5em 0.95em;
	border-radius: 999px;
	background: rgba(79, 140, 255, 0.12);
	color: #285fa8;
	font-size: 0.86em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.waiting-card h1 {
	margin: 0 0 0.45em;
	color: #1e2d45;
	font-size: 2.2em;
}

.waiting-card p {
	margin: 0.7em 0;
	color: #51617a;
	font-size: 1.05em;
	line-height: 1.65;
}

.waiting-actions {
	margin-top: 1.6em;
	display: flex;
	justify-content: center;
}

.waiting-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95em 1.5em;
	border-radius: 999px;
	background: linear-gradient(90deg, #285fa8 0%, #4c9d88 100%);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 22px rgba(40, 95, 168, 0.2);
}

@media (max-width: 820px) {
	.timeline-page {
		padding: 1.4em;
	}

	.timeline-hero {
		grid-template-columns: 1fr;
		padding: 1.5em;
	}

	.timeline-item {
		grid-template-columns: 1fr;
	}

	.timeline-item__time {
		justify-content: flex-start;
	}

	.timeline-status-card__top strong,
	.timeline-now-playing strong {
		font-size: 1.5em;
	}
}

.admin-page {
	max-width: 1080px;
	padding: 2.5em;
}

.admin-hero {
	margin-bottom: 2em;
}

.admin-badge {
	display: inline-block;
	padding: 0.45em 0.9em;
	margin-bottom: 1em;
	border-radius: 999px;
	background: rgba(79, 140, 255, 0.12);
	color: #2c5fd5;
	font-size: 0.9em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.admin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5em;
	margin-bottom: 1.5em;
}

.admin-card {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	border: 1px solid rgba(79, 140, 255, 0.14);
	border-radius: 18px;
	padding: 1.5em;
	box-shadow: 0 10px 24px rgba(44, 62, 80, 0.08);
}

.admin-card h2 {
	margin-top: 0;
	margin-bottom: 0.8em;
	color: #21314d;
	font-size: 1.35em;
}

.admin-form-card p,
.empty-state,
.member-list small {
	color: #5a6780;
}

.member-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.9em;
}

.member-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 0.95em 1em;
	background: #fff;
	border-radius: 14px;
	border: 1px solid rgba(79, 140, 255, 0.12);
	box-shadow: 0 4px 12px rgba(44, 62, 80, 0.05);
}

.member-list__content {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
	min-width: 0;
}

.member-list__actions {
	display: flex;
	align-items: center;
	gap: 0.65em;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.member-list span {
	font-weight: 700;
	color: #25324a;
}

.member-list__role-form {
	display: flex;
	align-items: center;
	gap: 0.55em;
	flex-wrap: wrap;
}

.member-list__role-form select {
	padding: 0.7em 0.9em;
	border-radius: 10px;
	border: 1px solid rgba(79, 140, 255, 0.18);
	background: #fff;
	font: inherit;
	color: #25324a;
}

.member-list__save-button {
	padding: 0.72em 1.05em;
	border: none;
	border-radius: 999px;
	background: linear-gradient(90deg, #285fa8 0%, #4f8cff 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 16px rgba(40, 95, 168, 0.16);
}

.member-list__save-button:hover {
	transform: translateY(-1px);
}

.member-list__remove-form {
	flex-shrink: 0;
}

.member-list__remove-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 999px;
	background: rgba(220, 53, 69, 0.12);
	color: #b42318;
	font-size: 1.5em;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.member-list__remove-button:hover {
	transform: scale(1.05);
	background: rgba(220, 53, 69, 0.18);
	box-shadow: 0 8px 16px rgba(180, 35, 24, 0.14);
}

@media (max-width: 720px) {
	.member-list li {
		align-items: flex-start;
		flex-direction: column;
	}

	.member-list__actions {
		width: 100%;
		justify-content: flex-start;
	}
}

.admin-form {
	display: grid;
	gap: 1em;
	margin-top: 1em;
}

.admin-form label {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
	font-weight: 600;
	color: #25324a;
}

.admin-form input,
.admin-form select {
	padding: 0.9em 1em;
	border-radius: 12px;
	border: 1px solid rgba(79, 140, 255, 0.18);
	background: #fff;
	font-size: 1em;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-form input:focus,
.admin-form select:focus {
	outline: none;
	border-color: #4f8cff;
	box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.12);
}

.admin-form button {
	justify-self: start;
	padding: 0.95em 1.4em;
	border: none;
	border-radius: 999px;
	background: linear-gradient(90deg, #4f8cff 0%, #6ee7b7 100%);
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(79, 140, 255, 0.18);
	transition: transform 0.2s, box-shadow 0.2s;
}

.admin-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(79, 140, 255, 0.24);
}

.admin-message {
	margin-bottom: 1.5em;
	padding: 1em 1.2em;
	border-radius: 14px;
	font-weight: 600;
	border: 1px solid transparent;
}

.admin-message.success {
	background: rgba(57, 181, 74, 0.12);
	border-color: rgba(57, 181, 74, 0.22);
	color: #1f7a31;
}

.admin-message.error {
	background: rgba(217, 83, 79, 0.1);
	border-color: rgba(217, 83, 79, 0.18);
	color: #a33a35;
}

.draaiboek-page {
	max-width: 1120px;
	padding: 2.75em;
	background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.98) 100%);
}

.draaiboek-hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5em;
	margin-bottom: 2em;
	padding: 2em;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 28%),
		linear-gradient(135deg, #19335a 0%, #285fa8 52%, #6ec8b1 100%);
	color: #fff;
	box-shadow: 0 18px 36px rgba(25, 51, 90, 0.22);
}

.draaiboek-badge {
	display: inline-block;
	padding: 0.45em 0.85em;
	margin-bottom: 1em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 0.82em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.draaiboek-hero h1 {
	margin: 0 0 0.3em;
	font-size: 2.4em;
	color: #fff;
}

.draaiboek-hero p {
	margin: 0;
	max-width: 580px;
	color: rgba(255, 255, 255, 0.88);
}

.draaiboek-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	padding: 1.05em 1.7em;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: linear-gradient(135deg, #ffe08a 0%, #ffd166 45%, #ffb347 100%);
	color: #17304e;
	font-size: 1em;
	font-weight: 800;
	letter-spacing: 0.02em;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(17, 35, 58, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
	transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
	white-space: nowrap;
}

.draaiboek-toggle::before {
	content: '+';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8em;
	height: 1.8em;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.38);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
	font-size: 1.05em;
	font-weight: 900;
	line-height: 1;
}

.draaiboek-toggle::after {
	content: '';
	position: absolute;
	top: 0;
	left: -35%;
	width: 35%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
	transform: skewX(-24deg);
	transition: left 0.35s ease;
}

.draaiboek-toggle:hover {
	transform: translateY(-3px) scale(1.02);
	filter: saturate(1.08);
	box-shadow: 0 20px 36px rgba(17, 35, 58, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.draaiboek-toggle:hover::after {
	left: 120%;
}

.draaiboek-toggle:active {
	transform: translateY(-1px) scale(0.99);
	box-shadow: 0 10px 20px rgba(17, 35, 58, 0.22);
}

.draaiboek-message {
	margin-bottom: 1.5em;
	padding: 1em 1.2em;
	border-radius: 16px;
	font-weight: 700;
	border: 1px solid transparent;
}

.draaiboek-message.success {
	background: rgba(57, 181, 74, 0.12);
	border-color: rgba(57, 181, 74, 0.22);
	color: #1f7a31;
}

.draaiboek-message.error {
	background: rgba(217, 83, 79, 0.1);
	border-color: rgba(217, 83, 79, 0.18);
	color: #a33a35;
}

.draaiboek-form-panel {
	margin-bottom: 2em;
	padding: 1.8em;
	border-radius: 20px;
	background: linear-gradient(180deg, #fff4da 0%, #ffffff 100%);
	border: 1px solid rgba(255, 209, 102, 0.4);
	box-shadow: 0 12px 26px rgba(44, 62, 80, 0.08);
}

.draaiboek-form-header h2,
.section-heading h2 {
	margin: 0;
	color: #1e2d45;
}

.draaiboek-form-header p {
	margin: 0.45em 0 0;
	color: #5a6780;
}

.draaiboek-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1em;
	margin-top: 1.4em;
	align-items: end;
}

.draaiboek-form label {
	display: flex;
	flex-direction: column;
	gap: 0.45em;
	color: #25324a;
	font-weight: 700;
}

.draaiboek-form input,
.draaiboek-form select {
	padding: 0.95em 1em;
	border-radius: 14px;
	border: 1px solid rgba(40, 95, 168, 0.16);
	background: rgba(255, 255, 255, 0.96);
	font-size: 1em;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.draaiboek-form input:focus,
.draaiboek-form select:focus {
	outline: none;
	border-color: #285fa8;
	box-shadow: 0 0 0 4px rgba(40, 95, 168, 0.12);
}

.draaiboek-form button {
	padding: 1em 1.2em;
	border: none;
	border-radius: 14px;
	background: linear-gradient(90deg, #19335a 0%, #285fa8 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(25, 51, 90, 0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}

.draaiboek-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(25, 51, 90, 0.24);
}

.show-section {
	margin-bottom: 2em;
	padding: 1.6em;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(79, 140, 255, 0.12);
	box-shadow: 0 12px 28px rgba(44, 62, 80, 0.06);
}

.past-shows {
	background: linear-gradient(180deg, #fff 0%, #f8f7f3 100%);
	border-color: rgba(25, 51, 90, 0.08);
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1em;
	margin-bottom: 1.25em;
}

.section-heading span {
	display: inline-block;
	padding: 0.4em 0.85em;
	border-radius: 999px;
	background: rgba(40, 95, 168, 0.1);
	color: #285fa8;
	font-weight: 700;
	font-size: 0.92em;
}

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

.show-card {
	display: flex;
	gap: 1em;
	align-items: center;
	padding: 1.15em;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(79, 140, 255, 0.14);
	box-shadow: 0 8px 18px rgba(44, 62, 80, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
}

.show-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(44, 62, 80, 0.1);
}

.show-card__date {
	min-width: 82px;
	padding: 0.85em 0.7em;
	border-radius: 16px;
	background: linear-gradient(135deg, #edf4ff 0%, #d8fff1 100%);
	color: #21456f;
	font-weight: 800;
	text-align: center;
	line-height: 1.35;
}

.show-card__content h3 {
	margin: 0 0 0.35em;
	color: #21314d;
	font-size: 1.15em;
}

.show-card__time {
	font-size: 1.02em;
	font-weight: 700;
	color: #1f4672;
}

.show-card__meta {
	margin-top: 0.45em;
	font-size: 0.96em;
	color: #62708a;
}

.show-card__content p,
.empty-state {
	margin: 0;
	color: #5a6780;
}

.show-card__actions {
	display: flex;
	gap: 0.75em;
	margin-top: 1em;
	flex-wrap: wrap;
}

.show-card__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75em 1.05em;
	border-radius: 12px;
	font-size: 0.95em;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.show-card__action:hover {
	transform: translateY(-2px);
}

.show-card__action--secondary {
	background: #eef4ff;
	color: #285fa8;
	box-shadow: 0 8px 18px rgba(40, 95, 168, 0.1);
}

.show-card__action--primary {
	background: linear-gradient(90deg, #19335a 0%, #285fa8 100%);
	color: #fff;
	box-shadow: 0 10px 20px rgba(25, 51, 90, 0.2);
}

@media (max-width: 760px) {
	.draaiboek-page {
		padding: 1.2em;
	}

	.draaiboek-hero {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5em;
	}

	.draaiboek-hero h1 {
		font-size: 1.8em;
	}

	.draaiboek-toggle,
	.draaiboek-form button {
		width: 100%;
	}

	.section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.show-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.show-card__date {
		min-width: auto;
		width: 100%;
	}
}

.show-card__action--danger {
	border: none;
	background: rgba(217, 83, 79, 0.12);
	color: #a33a35;
	box-shadow: 0 8px 18px rgba(163, 58, 53, 0.08);
	cursor: pointer;
}

.show-editor-page {
	max-width: 1240px;
	padding: 2.75em;
}

.show-editor-hero {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: 1.5em;
	margin-bottom: 2em;
	padding: 2em;
	border-radius: 26px;
	background:
		radial-gradient(circle at top left, rgba(110, 231, 183, 0.2), transparent 24%),
		linear-gradient(135deg, #172d4b 0%, #285fa8 52%, #21456f 100%);
	color: #fff;
	box-shadow: 0 18px 36px rgba(23, 45, 75, 0.22);
}

.show-editor-badge {
	display: inline-block;
	padding: 0.45em 0.85em;
	margin-bottom: 1em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.82em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.show-editor-hero h1 {
	margin: 0 0 0.35em;
	color: #fff;
	font-size: 2.35em;
}

.show-editor-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	max-width: 640px;
}

.show-editor-summary {
	display: grid;
	gap: 0.9em;
	padding: 1.2em;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.show-editor-summary div {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
	padding-bottom: 0.8em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.show-editor-summary div:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.show-editor-summary strong {
	font-size: 0.86em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.72);
}

.show-editor-summary span {
	font-size: 1.08em;
	font-weight: 700;
}

.show-editor-sidekick-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7em;
	align-items: center;
}

.show-editor-sidekick-form select {
	min-width: 220px;
	padding: 0.85em 1em;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.96);
	color: #25324a;
	font: inherit;
}

.show-editor-sidekick-form .show-editor-secondary-button {
	padding: 0.85em 1.15em;
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.14);
}

.show-editor-grid {
	display: grid;
	grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
	gap: 1.5em;
}

.show-editor-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(79, 140, 255, 0.12);
	border-radius: 24px;
	padding: 1.7em;
	box-shadow: 0 14px 30px rgba(44, 62, 80, 0.08);
}

.show-editor-card__header h2 {
	margin: 0;
	color: #1e2d45;
}

.show-editor-card__header p {
	margin: 0.45em 0 1.2em;
	color: #5a6780;
}

.show-editor-card__header--compact h2 {
	font-size: 1.15em;
}

.show-editor-card__header--compact p {
	margin-bottom: 0;
}

.show-item-library {
	margin: 0;
}

.show-item-library__list {
	display: flex;
	gap: 0.75em;
	flex-wrap: wrap;
}

.show-item-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8em 1em;
	border: 1px solid rgba(40, 95, 168, 0.14);
	border-radius: 999px;
	background: linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
	color: #21456f;
	font-weight: 800;
	cursor: grab;
	box-shadow: 0 10px 20px rgba(40, 95, 168, 0.08);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.show-item-chip:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(40, 95, 168, 0.12);
	border-color: rgba(40, 95, 168, 0.28);
}

.show-item-chip.is-dragging {
	opacity: 0.55;
	cursor: grabbing;
}

.show-playlist-upload-form {
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin-top: 1.4em;
	padding-top: 1.4em;
	border-top: 1px solid rgba(40, 95, 168, 0.12);
}

.show-news-picker {
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin-top: 1.4em;
	padding-top: 1.4em;
	border-top: 1px solid rgba(40, 95, 168, 0.12);
}

.show-news-picker__header {
	margin-bottom: 0;
}

.show-news-picker__categories {
	display: flex;
	gap: 0.75em;
	flex-wrap: wrap;
}

.show-news-picker__category.is-active {
	background: linear-gradient(90deg, #19335a 0%, #285fa8 100%);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(25, 51, 90, 0.18);
}

.show-news-picker__category:disabled {
	opacity: 0.7;
	cursor: wait;
}

.show-news-picker__status {
	margin: 0;
	color: #5a6780;
	line-height: 1.5;
}

.show-news-picker__status.is-error {
	color: #b32638;
}

.show-news-picker__list {
	display: flex;
	flex-direction: column;
	gap: 0.9em;
}

.show-news-picker__item {
	display: flex;
	flex-direction: column;
	gap: 0.8em;
	padding: 1em;
	border-radius: 18px;
	border: 1px solid rgba(40, 95, 168, 0.14);
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	box-shadow: 0 8px 18px rgba(44, 62, 80, 0.05);
}

.show-news-picker__item.is-selected {
	border-color: rgba(40, 95, 168, 0.42);
	box-shadow: 0 14px 24px rgba(40, 95, 168, 0.12);
	background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.show-news-picker__item-header h3 {
	margin: 0;
	font-size: 1.02em;
	color: #21314d;
}

.show-news-picker__meta,
.show-news-picker__preview {
	margin: 0;
	line-height: 1.55;
}

.show-news-picker__meta {
	margin-top: 0.35em;
	font-size: 0.92em;
	color: #285fa8;
	font-weight: 700;
}

.show-news-picker__preview {
	color: #5a6780;
}

.show-news-picker__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8em;
	flex-wrap: wrap;
}

.show-news-picker__select-button,
.show-news-picker__add-button {
	padding: 0.8em 1.1em;
	border: none;
	border-radius: 14px;
	background: linear-gradient(90deg, #19335a 0%, #285fa8 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(25, 51, 90, 0.16);
}

.show-news-picker__preview {
	display: flex;
	flex-direction: column;
	gap: 0.9em;
	padding: 1.1em;
	border-radius: 18px;
	border: 1px solid rgba(40, 95, 168, 0.18);
	background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
	box-shadow: 0 8px 18px rgba(44, 62, 80, 0.05);
}

.show-news-picker__preview-header h3,
.show-news-picker__preview-header p,
.show-news-picker__preview-body {
	margin: 0;
}

.show-news-picker__preview-header h3 {
	color: #21314d;
	margin-bottom: 0.3em;
}

.show-news-picker__preview-header p {
	color: #285fa8;
	font-weight: 700;
}

.show-news-picker__preview-body {
	color: #4b5a72;
	line-height: 1.65;
	white-space: pre-line;
}

.show-news-picker__preview-actions {
	display: flex;
	justify-content: flex-start;
}

.show-news-picker__link {
	color: #285fa8;
	font-weight: 700;
	text-decoration: none;
}

.show-news-picker__link:hover {
	text-decoration: underline;
}

.show-playlist-upload-form label {
	display: flex;
	flex-direction: column;
	gap: 0.45em;
	font-weight: 700;
	color: #25324a;
}

.show-playlist-upload-form input[type="file"],
.show-playlist-upload-form input[type="number"] {
	padding: 0.95em 1em;
	border-radius: 14px;
	border: 1px solid rgba(40, 95, 168, 0.16);
	background: rgba(255, 255, 255, 0.96);
	font: inherit;
	color: #25324a;
	box-sizing: border-box;
}

.show-playlist-upload-form input[type="file"]:focus,
.show-playlist-upload-form input[type="number"]:focus {
	outline: none;
	border-color: #285fa8;
	box-shadow: 0 0 0 4px rgba(40, 95, 168, 0.12);
	background: #fff;
}

.show-playlist-upload-form button {
	padding: 1em 1.3em;
	border: none;
	border-radius: 14px;
	background: linear-gradient(90deg, #19335a 0%, #285fa8 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(25, 51, 90, 0.2);
}

.show-playlist-upload-form__hint {
	margin: 0;
	color: #5a6780;
	line-height: 1.5;
}

[hidden] {
	display: none !important;
}

.show-plan-inline-form__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1em;
}

.show-plan-inline-form__meta {
	margin-bottom: 0.9em;
}

.show-plan-inline-form__full {
	display: flex;
	flex-direction: column;
	gap: 0.45em;
	margin-top: 1em;
	font-weight: 700;
	color: #25324a;
}

.show-plan-inline-form label {
	display: flex;
	flex-direction: column;
	gap: 0.45em;
	font-weight: 700;
	color: #25324a;
}

.show-plan-inline-form input,
.show-plan-inline-form textarea {
	padding: 0.95em 1em;
	border-radius: 14px;
	border: 1px solid rgba(40, 95, 168, 0.16);
	background: rgba(255, 255, 255, 0.96);
	font-size: 1em;
	box-sizing: border-box;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.show-plan-inline-form input:focus,
.show-plan-inline-form textarea:focus {
	outline: none;
	border-color: #285fa8;
	box-shadow: 0 0 0 4px rgba(40, 95, 168, 0.12);
}


.show-plan-inline-form__actions {
	display: flex;
	align-items: center;
	gap: 1em;
	margin-top: 1em;
}

.show-plan-inline-form__actions button {
	padding: 1em 1.3em;
	border: none;
	border-radius: 14px;
	background: linear-gradient(90deg, #19335a 0%, #285fa8 100%);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(25, 51, 90, 0.2);
}

.show-editor-secondary-button {
	padding: 1em 1.3em;
	border: 1px solid rgba(40, 95, 168, 0.16);
	border-radius: 14px;
	background: #eef4ff;
	color: #285fa8;
	font-weight: 700;
	cursor: pointer;
}

.show-plan-list {
	display: flex;
	flex-direction: column;
	gap: 1em;
	min-height: 40px;
}

.show-plan-dropzone {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	margin-bottom: 1.2em;
	padding: 1.15em 1.2em;
	border: 2px dashed rgba(40, 95, 168, 0.28);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(237, 244, 255, 0.72) 0%, rgba(255, 255, 255, 0.96) 100%);
	color: #21456f;
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.show-plan-dropzone strong {
	font-size: 1.02em;
}

.show-plan-dropzone span {
	color: #5a6780;
}

.show-plan-dropzone.is-active {
	transform: scale(1.01);
	border-color: #285fa8;
	background: linear-gradient(135deg, rgba(216, 255, 241, 0.9) 0%, rgba(237, 244, 255, 0.96) 100%);
	box-shadow: 0 14px 28px rgba(40, 95, 168, 0.12);
}

.show-plan-inline-form__duration-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 90px;
	gap: 0.75em;
	align-items: center;
}

.show-plan-inline-form__duration-unit {
	padding: 0.95em 0.9em;
	border-radius: 14px;
	border: 1px solid rgba(40, 95, 168, 0.16);
	background: rgba(255, 255, 255, 0.96);
	font: inherit;
	color: #25324a;
}

.show-plan-item {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 1em;
	padding: 1.1em;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(79, 140, 255, 0.12);
	box-shadow: 0 8px 18px rgba(44, 62, 80, 0.05);
	transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.show-plan-item--draft {
	margin-bottom: 1em;
	border-style: dashed;
	border-width: 2px;
	background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
}

.show-plan-item--talk {
	border-color: rgba(220, 53, 69, 0.7);
	box-shadow: 0 10px 22px rgba(220, 53, 69, 0.08);
}

.show-plan-item--jingle {
	border-color: rgba(255, 193, 7, 0.78);
	box-shadow: 0 10px 22px rgba(255, 193, 7, 0.12);
}

.show-plan-item--call {
	border-color: rgba(13, 110, 253, 0.62);
	box-shadow: 0 10px 22px rgba(13, 110, 253, 0.1);
}

.show-plan-item[data-plan-item="existing"] {
	cursor: move;
}

.show-plan-item.is-dragging {
	opacity: 0.55;
	transform: scale(0.99);
	box-shadow: 0 18px 30px rgba(44, 62, 80, 0.12);
}

.show-plan-item__time {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.9em 0.7em;
	border-radius: 16px;
	background: linear-gradient(135deg, #edf4ff 0%, #d8fff1 100%);
	font-weight: 800;
	color: #21456f;
	height: fit-content;
}

.show-plan-item__topline,
.show-plan-item__footer,
.show-plan-item__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8em;
	flex-wrap: wrap;
}

.show-plan-item__type,
.show-plan-item__position {
	display: inline-flex;
	padding: 0.35em 0.7em;
	border-radius: 999px;
	font-size: 0.85em;
	font-weight: 700;
	background: rgba(40, 95, 168, 0.08);
	color: #285fa8;
}

.show-plan-item h3 {
	margin: 0.6em 0 0.35em;
	color: #21314d;
}

.show-plan-item__title-row,
.timeline-item__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.8em;
	margin: 0.6em 0 0.35em;
}

.show-plan-item__title-row h3,
.timeline-item__title-row h3 {
	margin: 0;
	flex: 1;
	min-width: 0;
}

.song-info {
	position: relative;
	flex-shrink: 0;
}

.song-info__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(40, 95, 168, 0.18);
	border-radius: 999px;
	background: #eef4ff;
	color: #285fa8;
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 6px 14px rgba(40, 95, 168, 0.08);
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.song-info__button:hover,
.song-info__button[aria-expanded="true"] {
	background: #dce9ff;
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(40, 95, 168, 0.12);
}

.song-info__panel {
	position: absolute;
	right: 0;
	top: calc(100% + 0.55em);
	width: min(320px, calc(100vw - 4rem));
	padding: 0.95em 1em;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(40, 95, 168, 0.14);
	box-shadow: 0 18px 34px rgba(44, 62, 80, 0.14);
	z-index: 15;
}

.song-info__body {
	margin: 0;
	color: #4d5d76;
	line-height: 1.55;
	font-size: 0.95em;
	white-space: pre-line;
}

.song-info__body.is-error {
	color: #b42318;
}

.show-plan-item__artist {
	margin: 0 0 0.35em;
	font-weight: 700;
	color: #285fa8;
}

.show-plan-item__phone {
	margin: 0 0 0.35em;
	font-weight: 700;
	color: #21456f;
}

.show-plan-item p {
	margin: 0 0 0.9em;
	color: #5a6780;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.show-plan-item__delete-form {
	margin: 0;
}

@media (max-width: 980px) {
	.show-editor-hero,
	.show-editor-grid {
		grid-template-columns: 1fr;
	}

	.show-editor-page {
		padding: 1.2em;
	}
}

@media (max-width: 760px) {
	.show-plan-inline-form__grid {
		grid-template-columns: 1fr;
	}

	.show-plan-item {
		grid-template-columns: 1fr;
	}

	.song-info__panel {
		left: 0;
		right: auto;
		width: min(100%, calc(100vw - 3rem));
	}

	.show-news-picker__footer {
		align-items: stretch;
	}
}

.admin-message.error {
	background: rgba(220, 53, 69, 0.10);
	border-color: rgba(220, 53, 69, 0.18);
	color: #b32638;
}

@media (max-width: 600px) {
	.admin-page {
		padding: 1.2em;
	}

	.admin-form button {
		width: 100%;
		justify-self: stretch;
	}
}
