/* 24-09-08 For global frontend styling by ELAI */
.elai-tooltip {
    visibility: hidden; /* Hide the tooltip by default */
    position: absolute; /* Position it absolutely within the parent container */
    top: -30px; /* Adjust to position above the slider */
    left: 50%; /* Center it horizontally */
    transform: translateX(-50%); /* Adjust for centering */
    background-color: #333; /* Dark background for contrast */
    color: #fff; /* White text */
    padding: 5px; /* Padding for the tooltip */
    border-radius: 4px; /* Rounded corners */
    white-space: nowrap; /* Prevent text wrapping */
    z-index: 10; /* Ensure it is above other elements */
}

.elai-border-radius {
	border-radius: 10px;
}