html, body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
  
.navbar-toggler{
    background-color:var(--bs-green);
	opacity: 0.75;
}

#orientation-container {
	width: 100vw;
	height: 100vh;
	display: flex;
}


.board {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;

	display: grid;
	grid-template-columns: repeat(7, 1fr); /* gleichmäßige Verteilung */
	aspect-ratio: 7 / 6; /* hält das Seitenverhältnis von 7:6 */
	gap: 5px;
	background-color: #00458a;
	padding: 10px;
	border-radius: 10px;
}

.cell {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #e0e0e0;
	border-radius: 50%;
	cursor: pointer;
}

.cell.red { background-color: red; }
.cell.yellow { background-color: yellow; }


.winner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.winner-box {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.winner-box button {
	margin-top: 1rem;
	padding: 0.5rem 1.2rem;
	font-size: 1rem;
	border: none;
	background-color: #3498db;
	color: white;
	border-radius: 5px;
	cursor: pointer;
}

.winner-box button:hover {
	background-color: #2980b9;
}

#confetti-canvas {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100vw;
	height: 92vh;
	z-index: 1100;
}

.whatsapp   { background-color: #25D366; }
.facebook   { background-color: #1877F2; }
.telegram   { background-color: #0088cc; }
.linkedin   { background-color: #0e76a8; }
.email      { background-color: #7a7a7a; }
