/* Add margins to content */
    .content-wrapper {
      padding: 20px;
    }

    .card-body {
      flex: 1;
      overflow: auto; /* Add scroll if content overflows */
    }
    .card-header {
        background-color: rgba(0,0,0,0.03);
        border-bottom: 1px solid rgba(0,0,0,0.125);
        /* Reduced top and bottom padding */
        padding: 0.4rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Distributes space between items */
        flex-wrap: wrap; /* Allow items to wrap if needed */
    }
    /* Ensure card-title grows to fill space and pushes tools right */
    .card-header .card-title {
        margin-bottom: 0; /* Remove default bottom margin from h3 */
        flex-grow: 1; /* Allow title to grow and take available space */
        text-align: left; /* Align the text inside the title to the left */
        /* Adjust line-height if needed to reduce title vertical space */
        /* line-height: 1.2; */
    }

    .card-footer {
      /* Reduced top and bottom padding */
      padding: 0.4rem 1.25rem;
      background-color: rgba(0,0,0,0.03);
      border-top: 1px solid rgba(0,0,0,0.125);
    }

    .status-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* Adjust font-size or line-height if needed to reduce status bar vertical space */
      font-size: 0.8em;
    }
.css-tooltip {
  position: relative;
  display: inline-block; /* Ensures proper positioning */
  cursor: pointer;
}

.css-tooltip .tooltip-text {
  /* Tooltip styling */
  visibility: hidden;
  width: 200px;
  background: #333;
  color: white;
  text-align: center;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  
  /* Positioning BELOW the icon */
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px; /* Space between icon and tooltip */

  /* Fade effect */
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  
  /* Optional: subtle shadow */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Tooltip arrow (optional) */
.css-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

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

.grayscale-disable {
  opacity: 0.7;
  filter: grayscale(80%);
  transition: all 0.3s ease;
}
