.tp-container{
    background:#fff;
    padding:24px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.tp-topo{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.tp-topo h2{
    margin:0;
    font-size:24px;
}

#tpBusca{
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
    width:250px;
}

.tp-tabs{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.tp-tabs button{
    border:none;
    background:#eee;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
}

.tp-tabs .active{
    background:#0d6efd;
    color:#fff;
}

.tp-table{
    width:100%;
    border-collapse:collapse;
}

.tp-table th{
    background:#f5f5f5;
    text-align:left;
    padding:14px;
}

.tp-table td{
    padding:14px;
    border-top:1px solid #eee;
}

.tp-table tr:hover{
    background:#fafafa;
}