@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* Variables */
:root {
	--body-bg: #d1eddd;
	--header-bg: #3fa9f5;
	--fun-font: "Caveat Brush", cursive;
	--standard-font: "Funnel Sans", sans-serif;
}

/* General */
html, body {
	background-color: var(--body-bg);
	font-family: var(--standard-font);
}

/* Header */
#header .navbar {
	background: var(--header-bg) url('../img/skunks.svg') no-repeat left center;
	background-size: 200px;
	padding-left: 250px;
}

#header .navbar a.navbar-brand {
	font: 60px var(--fun-font);
	height: 100px;
	width: 100px;
}


/* Game Page Styles */
#playerSelectModal .modal-dialog {
	pointer-events: none;
}

#playerSelectModal .modal-content {
	pointer-events: auto;
}

.letter-card {
	border: 3px solid #000;
	padding: 40px 20px;
	font-size: 48px;
	font-weight: bold;
	text-align: center;
	background: #fff;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.score-section {
	border: 2px solid #000;
	padding: 20px;
	min-height: 200px;
}

.score-section.current-player {
	border: 4px solid #0d6efd;
	background-color: #e7f1ff;
	box-shadow: 0 0 15px rgba(13, 110, 253, 0.3);
}

.player-name {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
}

.player-name.current-player::after {
	content: " (You)";
	color: #0d6efd;
	font-size: 14px;
}

.score-display {
	font-size: 36px;
	font-weight: bold;
}

.move-history {
	max-height: 300px;
	overflow-y: auto;
}

/* Share Button */
.share-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #0d6efd;
	color: white;
	border: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 1000;
	transition: background-color 0.3s, transform 0.2s;
}

.share-button:hover {
	background-color: #0b5ed7;
	transform: scale(1.1);
}

.share-button:active {
	transform: scale(0.95);
}
