/* Alert generico */
.tus3e-alert {
    padding: 30px;
    background: #f9f9f9;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

/* Alert errore */
.tus3e-alert-error {
    color: #d00;
}

/* Contatore gemme */
.tus3e-gemme-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 30px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    z-index: 9999;
}
.tus3e-gemme-counter img {
    height: 20px;
    margin-right: 8px;
}
.tus3e-gemme-counter span {
    font-weight: bold;
    font-size: 16px;
    color: #4FB0E5; /* blu chiaro vivo */
}

/* Dashboard escort */
.tus3e-escort-dashboard {
    width: 100%;
    min-height: 100vh;
    padding: 40px;
    background: #fff;
}

/* Tabs escort */
.tus3e-escort-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Bottone tab */
.escort-tab {
    padding: 12px 24px;
    margin: 0 6px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
}

/* Tab attiva */
.escort-tab.active {
    background: #4FB0E5; /* blu chiaro vivo */
    color: #fff;
}

/* Hover tab */
.escort-tab:hover {
    background: #5AC1F0; /* più brillante e vivo */
    color: #fff;
}

/* Contenuto escort */
.tus3e-escort-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #555;
}

/* Panel escort */
.escort-panel {
    display: none;
}

.escort-panel.active {
    display: block;
}

/* Link contenuto escort */
.tus3e-escort-content a {
    color: #4FB0E5; /* blu chiaro vivo */
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s;
}

.tus3e-escort-content a:hover {
    color: #5AC1F0; /* più brillante e vivo */
}