.tus3e-profile-wrapper {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Tabs */
.tus3e-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

/* Bottone tab */
.tus3e-tabs .tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: color 0.3s, border-color 0.3s;
}

/* Tab attivo */
.tus3e-tabs .tab-btn.active {
    border-bottom: 3px solid #4FB0E5; /* blu chiaro vivo */
    color: #4FB0E5; /* blu chiaro vivo */
}

/* Tab hover */
.tus3e-tabs .tab-btn:hover {
    color: #5AC1F0; /* più brillante e vivo */
}

/* Contenuto tab */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Tabella profilo */
.tus3e-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.tus3e-profile-table th {
    text-align: left;
    padding: 10px;
    width: 30%;
    background: #f5f5f5;
}

.tus3e-profile-table td {
    padding: 10px;
}