.text_history{
        font-size: 0.875rem;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.block_show_history{
     width: 400px;
    height: 550px;
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 8px 10px -6px rgba(0, 0, 0, 0.1); /* shadow-xl */
    transition: transform 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
}