/* modules/info-tip.css */
/* how to use info-tip.css
<div class="info-tip" title="The tip you want to appear when mousing over or clicking on the icon">?</div>
 */
.info-tip {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #f0f0f0;
	color: #333;
	font-size: 14px;
	border: 1px solid #ccc;
	margin-left: 5px;
	z-index: 10;
	position: relative;
	cursor: pointer;
}

.tooltip {
	position: absolute;
	background-color: #f8f9fa;
	color: #333;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	width: calc(100% - 20px);
	z-index: 9999;
}
