.no-wrap {
    white-space: nowrap;
}

.tooltip-header {
    margin-bottom: 2px !important;
    text-align: center; /* Added from Header component props */
    font-size: 1rem; /* Added from Header as='h4' */
    font-weight: bold; /* Added from Header as='h4' */
}

.column {
    padding: 5px !important;
    display: inline-block; /* Basic column layout */
    vertical-align: top; /* Basic column layout */
    /* Add border for divided effect if needed */
    /* border-right: 1px solid #ccc; */
    /* padding-right: 10px; */
    /* padding-left: 10px; */
}
/* .column:last-child { border-right: none; } */


.tooltip-item-icon {
    vertical-align: middle !important;
    display: inline-block; /* For layout */
    width: 1em; /* Approximate size of tiny icon */
    height: 1em; /* Approximate size of tiny icon */
    border-radius: 50%; /* Make it a circle */
    margin-right: 5px; /* Space between icon and text */
}

.item-tooltip {
    width: 180px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block; /* Allow width */
    vertical-align: middle; /* Align with icon */
}

/* Basic List structure */
.tooltip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-list-item {
    padding: 2px 0;
}

/* Basic Popup/Hover Structure */
.tooltip-trigger-container {
    position: relative;
    display: inline-block; /* Or block, depending on layout */
}

.tooltip-popup-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1;
    min-width: 200px; /* Adjust as needed */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    white-space: normal; /* Override no-wrap if needed inside */
    /* Position it - below the trigger for example */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px; /* Small gap */
}

.tooltip-trigger-container:hover .tooltip-popup-content {
    display: block;
}

/* Label Styles */
.tooltip-label {
    display: inline-block;
    padding: 0.5em 0.8em;
    color: white;
    border-radius: 0.28571429rem; /* Semantic UI default */
    font-weight: bold;
}

.tooltip-label h3 {
    margin: 0;
    font-size: 1em; /* Adjust as needed */
}
