/* Custom Tooltip Style */
.tooltip-inner {
    background-color: #dd2c00;  /* Dark background */
    color: white;            /* White text */
    font-size: 14px;         /* Font size */
    border-radius: 5px;      /* Rounded corners */
    padding: 5px 15px;           /* Padding */
}

.tooltip.bs-tooltip-top .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before,
.tooltip.bs-tooltip-left .arrow::before,
.tooltip.bs-tooltip-right .arrow::before {
    border-top-color: #333;  /* Tooltip arrow color */
}

/* Optional: Add a custom fade-in animation */
.tooltip {
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip.show {
    opacity: 1;
}
