/*html, body {
	background-color: #2a2a2ac9;
    margin: 0;
    padding: 0;
    height: auto; /* Allow content to dictate height */
    min-height: 100%; /* Ensure it doesn't shrink smaller than the viewport */
    overflow: visible; /* Allow overflow */
}*/

.nf-all {
	position: absolute;
	height: auto;
	overflow: visible;
}

.btn-noti {
	position: relative;
	z-index: 2;
	padding: 10px;
	border: none;
	background-color: #333232;
	color: #ccf0ff;
	font-size: 20px;
	border-radius: 7px;
	margin: 10px;
	transition: background-color 0.3s ease-in-out;
}

.btn-noti:hover {
	background-color: rgba(17, 16, 16, 0.662);
}

.nf-message {
	position: absolute;
	z-index: 3;
	left: auto;
	right: 50px;
	top: 8px;
	border: 1px solid black;
	padding: 14px;
	border-radius: 7px;
	background-color: #f2feff;
/*	transition: opacity 0.3s ease-in-out;*/
    max-height: none; /* Remove any height limit */
    overflow-y: auto; /* Add scroll if necessary for long content */
    width: auto;
    min-width: 15vw;
    max-width: 90vw;  
}

#nf-n {
	position: absolute;
	top: 2px;
	left: 40px;
	color: #ffffff;
	z-index: 3;
	background-color: #ea1919;
	border-radius: 20px;
	font-weight: 600;
	width: 20px;
	height: 20px;
	text-align: center;
	font-size: 12px;
	vertical-align: middle;
	line-height: 20px;
}

@media (max-width: 870px) {
	.nf-message {
		left: auto;
		right: 50px;
		top: 8px;
	    width: auto;
	    min-width: 70vw;
	    max-width: 90vw;  
	}
}
