/* Parchment & Control Selection Screen Styles */

#controlSelectionScreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #110d0c;
	background-image: radial-gradient(circle at center, #3a2f2b 20%, #110d0c 100%);
	z-index: 58000;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 20px;
	color: #fff;
	font-family: 'MedievalSharp', serif;
	cursor: url('/gauntlet_pointer.png') 0 0, default !important;
}

.parchment-container {
	position: relative;
	width: 95%;
	max-width: 1200px;
	max-height: 90vh;
	background: #ebd5b3;
	background-image: linear-gradient(to bottom, #f3e5ab 0%, #e6cd99 100%);
	border: 12px solid #5a3d28;
	border-radius: 8px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), inset 0 0 40px rgba(90, 61, 40, 0.4);
	color: #2b1a0e;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
}

.parchment-header {
	padding: 24px 30px 15px 30px;
	border-bottom: 2px dashed #8c684a;
	background: rgba(90, 61, 40, 0.08);
}

.parchment-title {
	font-family: 'Pirata One', serif;
	font-size: 42px;
	color: #4a2e1b;
	margin: 0 0 10px 0;
	text-align: center;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
	letter-spacing: 1px;
}

.parchment-body {
	display: flex;
	flex: 1;
	overflow: hidden;
}

.parchment-narration-col {
	flex: 1.2;
	padding: 24px 30px;
	border-right: 2px dashed #8c684a;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: rgba(255, 255, 255, 0.15);
}

.parchment-roles-col {
	flex: 1;
	padding: 24px 30px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.role-card {
	background: #d8be96;
	border: 2px solid #8c684a;
	border-radius: 6px;
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.2s ease;
}

.role-card:hover {
	background: #ebd3ab;
	border-color: #5a3d28;
	transform: translateY(-1px);
}
