.wrapshowico {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}


span.tipo-profissional {
    flex-basis: 100%;
    font-size: 13px;
    font-weight: 600;
}

.historico-data {
 width: 100%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.futuro svg.icofut, svg.icopass {
    display: flex;
   
}
.futuro svg.icofut {
    display: flex;
    fill: #0075ff;
}

.futuro svg.icopass, svg.icofut {
    display: none;
}

ul.lista-historico-profissional {
    color: #756b84;
    font-family: "Quicksand";
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px
}

ul.lista-historico-profissional li {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #ece4f2;
    padding: 5px 10px;
    border-radius: 5px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}

ul.lista-historico-profissional li a {
    color: #620BDC;
    text-decoration: underline;
}


ul.lista-historico-profissional svg {
    height: 17px;
    width: auto;
    flex-shrink: 0;
}




.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    background: #ece4f2;
    color: #756b84;
    border: none;
    padding: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Quicksand";
    font-weight: 600;
    transition: background 0.3s ease;
    height: 30px;
}
.pagination-btn svg {
    fill: #620BDC;
}

.pagination-btn:hover:not(:disabled) svg{
    fill: #fff;
}

.pagination-btn:hover:not(:disabled) {
    background: #620BDC;
    color: #fff;
}

.pagination-btn:disabled {
    background: #ece4f2;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: #620BDC;
    color: #fff;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.lista-historico-profissional.loading {
    opacity: 0.6;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .wrapvalcop {
        flex-grow: 1;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        flex-basis: 100%;
        width: 100%;
    }

    .item-historico {
        flex-direction: column;
    }

    .pagination-controls {
        gap: 8px;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}


