/* impostazioni-tab.css — MED-OS */
/* Navigazione a tab interna al modal-impostazioni */

.imp-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 22px;
}

.imp-tab-btn {
    padding: 9px 20px;
    font-size: 0.82em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    font-family: 'Inter', sans-serif;
}

.imp-tab-btn:hover {
    color: #167D87;
}

.imp-tab-btn.active {
    color: #167D87;
    border-bottom-color: #167D87;
}

.imp-tab-content {
    display: none;
}

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