.listConvo {}

.listConvo thead {
    background-color: #EAECEF;
}
.listConvo thead th {
    font-weight: 400;
    text-transform: uppercase;
}
.listConvo tbody td {
    text-align: center;
}

.btn-convo {
    display: block;
    text-decoration: none !important; 
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background: #18DCFF;
    padding: 8px 15px;
    border-radius: 30px;
}


@media screen and (max-width:768px) {
    .listConvo {
        display: flex;
    }
    .listConvo tbody {
        display: flex;
        overflow-x: auto;
    }
    .listConvo thead  {
        max-width: 150px;
    }

    .listConvo thead th {
        text-align: left;
        /* text-overflow: ellipsis;
        overflow: hidden;
white-space: nowrap; */
    }
    .listConvo thead tr, .listConvo tbody tr {
        display: flex;
        flex-direction: column;
    }
}