.info {
    display: flex;
}

.warning {
    display: flex;
}

.c-short-content {
    margin-top: 25px;
    margin-right: 10px;
}

a[title] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

a[title]::after {
    content: attr(title);
    position: absolute;
    bottom: 125%; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

a[title]:hover::after {
    opacity: 1;
}
