/* Add specific styles for maps if needed */
.mini-map-container {
	height: 150px; /* Adjust as needed */
	width: 100%;
	background-color: #e9ecef; /* Placeholder color */
	border-radius: 0.25rem;
	margin-top: 0.5rem;
	border: 1px solid #dee2e6;
}
.restricted-action-overlay {
	position: relative;
	opacity: 0.6; /* Make it look faded */
	cursor: not-allowed;
}
.restricted-action-overlay::after {
	content: "Trebuie să fii autentificat";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 0.8rem;
	text-align: center;
	z-index: 10;
	white-space: nowrap;
}
.login-prompt-button {
	width: 100%; /* Make button fill width */
}

.session-passed {
	opacity: 0.6; /* Le face puțin transparente */
	background-color: #f8f9fa; /* Un fundal ușor gri */
	/* filter: grayscale(50%); */ /* O altă opțiune pentru grey-out, poate fi prea mult */
}

.session-passed .accordion-button {
	background-color: #e9ecef !important; /* Butonul acordeonului puțin mai închis */
	color: #6c757d; /* Textul butonului gri */
}

.session-passed .accordion-body,
.session-passed .accordion-body * {
	/* Aplică și elementelor copil */
	pointer-events: none !important; /* Dezactivează toate interacțiunile mouse */
	cursor: default !important;
	/* Poți adăuga și alte stiluri, ex: text mai deschis la culoare */
	/* color: #adb5bd !important; */ /* Fii atent să nu afectezi lizibilitatea prea mult */
}

/* Permite totuși copierea textului dacă dorești, chiar dacă pointer-events e none */
.session-passed .accordion-body p,
.session-passed .accordion-body span,
.session-passed .accordion-body strong,
.session-passed .accordion-body div {
	user-select: text !important; /* Sau auto */
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
}

/* Specific pentru link-uri și butoane în sesiunile trecute, pentru a arăta că sunt inactive */
.session-passed .accordion-body a,
.session-passed .accordion-body button {
	text-decoration: line-through !important; /* Taie textul link-urilor/butoanelor */
	color: #6c757d !important; /* Culoare gri pentru text */
	border-color: #ced4da !important; /* Culoare gri pentru bordură, dacă există */
}
.session-passed .accordion-body a:hover,
.session-passed .accordion-body button:hover {
	text-decoration: line-through !important; /* Menține tăierea la hover */
}
