/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/


/******************

TOOL TIP / HELP BOX ON RIGHT FOR OPTIONS

*/
.custom-tooltip {
   position: relative;
   display: inline-block;
   cursor: pointer;
   border-bottom: 1px dotted; /* Add dotted underline for visibility */
}

.custom-tooltip .tooltip-text {
   visibility: hidden;
   width: 100%;
   background-color: #000;
   color: #fff;
   text-align: center;
   border-radius: 5px;
   padding: 10px;
   position: absolute;
   z-index: 1;
   top: 50%;
   left: 100%;
   transform: translateX(10px); /* Create space between the text and the tooltip box */
   margin-top: -30px; /* Adjust based on the height of the tooltip */
   opacity: 0;
   transition: opacity 0.3s;
   font-weight: normal;
}

.custom-tooltip .tooltip-text::after {
   content: "";
   position: absolute;
   top: 50%;
   left: -20px; /* Adjusted to be in line with the increased arrow size */
   margin-top: -15px; /* Adjust based on the height of the tooltip */
   border-width: 15px; /* Increased the border width for a larger arrow */
   border-style: solid;
   border-color: transparent #000 transparent transparent;
}

.custom-tooltip:hover .tooltip-text {
   visibility: visible;
   opacity: 1;
}

