.container-botcoin {
    background-color: #282b2f;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #404245;
    position: relative;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.container-botcoin img {
	max-width: 100%;
	height: auto;
}
.blurred {
		filter: blur(5px);
		pointer-events: none; /* Disabilita gli eventi del mouse */
}
.login-message {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	color: #111;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	z-index: 1000; /* Assicurati che sia sopra tutto il resto */
}

.profile-container {
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 20px;
}
.profile-img {
	width: 85px;
	height: 85px;
	border-radius: 50%;
	margin-right: 10px;
}
.profile-content {
	display: flex;
	align-items: center;
}
.comments-container {
	display: none;
	border-top: 1px solid #ccc;
	margin-top: 20px;
	padding-top: 20px;
}
.profile-pic {
	margin-right: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
.comment {
	display: flex;
	align-items: start;
	margin-bottom: 1.5rem;
}
.comment-body {
	position: relative;
}
.comment-content {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: 10px;
	position: relative;
}
.comment-arrow {
	position: absolute;
	top: 15px;
	left: -10px;
	width: 0;
	height: 0;
	border-right: 10px solid #f8f9fa;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}