.truncate {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate:hover::after {
    content: attr(data-full-text);
    white-space: pre-wrap;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    max-width: 300px;
    z-index: 10;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

[x-cloak] {
    display: none;
}

.hidden {
    display: none;
}
