/* Dashboard Shipment Tracking Cards */
.hofa-ak-dashboard-card-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hofa-ak-dashboard-card {
    background-color: #f1f3f9;
    padding: 1rem;
    border-radius: 1rem;
}

/* Tooltip container */
.hofa-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

/* Tooltip text */
.hofa-tooltip .hofa-tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.hofa-tooltip .hofa-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.hofa-tooltip:hover .hofa-tooltiptext {
    visibility: visible;
    opacity: 1;
}
