/* =====================================================
   BOTONES DE TOGGLE VISTA (Active/Disabled)
   ===================================================== */

.btn-view-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 40px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-toggle:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

.btn-view-toggle.active {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

.btn-view-toggle span:first-child {
    font-size: 14px;
}
