
/* ==================================================== */
/* Impostazioni Plugin - Interfaccia a Schede (Tabs)   */
/* ==================================================== */

.pd-admin-tabs {
    margin-top: 30px;
    margin-bottom: 20px;
}
.pd-admin-tab-content {
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0 5px 5px 5px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 100%;
}

.pd-admin-tab-content.active {
    display: block;
}

.pd-admin-tabs nav {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    border-bottom: 2px solid #ccc;
}

.pd-admin-tabs nav a {
    padding: 10px 16px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s ease;
}

.pd-admin-tabs nav a.active {
    background: #fff;
    font-weight: bold;
    color: #0073aa;
    border-color: #ccc;
}